logo
    • Buy Crypto
    • Markets
    • Futures
    • Spot
    • Earn
    • Affiliates & AI
    • More
    1. WEEX
    2. Crypto News
    3. What is account abstraction and why seed phrases are becoming optional

    What is account abstraction and why seed phrases are becoming optional

    By: rootdata|2026/08/03 15:59:46
    0
    Share
    copy
    Prefer us on GooglePrefer us on Google
    APPAPP
    00.00%--
    STABLESTABLE
    00.00%--
    TRUSTTRUST
    00.00%--
    TRUSTTRUST
     

    Introduction

    The standard advice for anyone entering crypto has not changed in a decade: write down 12 words, store them offline, and never lose them. This instruction is correct under the old model. Externally owned accounts (EOAs) derive a single private key from that mnemonic, and whoever holds the key controls the funds. There is no recovery, no spending limit, no way to require a second signature. Lose the phrase, lose everything.

    Account abstraction changes this premise. Instead of coupling wallet security to a single secret, AA turns the wallet itself into a smart contract, one that can enforce arbitrary rules about who may sign, how gas is paid, and what happens when a key is compromised. The upgrade does not require users to understand smart contracts. From the outside, a passkey wallet looks like logging into an app with a fingerprint. Underneath, the architecture is fundamentally different.

    This guide explains how AA works at the protocol level, what ERC-4337 introduced, and why the shift matters for self-custody going forward.

    How Ethereum wallets worked before account abstraction

    Every Ethereum address before AA was an externally owned account. An EOA is controlled by a private key derived from a mnemonic seed phrase. The account has no on-chain logic. It can send transactions and sign messages, but it cannot enforce rules about those actions. For a broader overview of wallet types and their mechanics, see what are crypto wallets.

    This design has three structural limitations:

    No recovery mechanism. If the private key is lost and no backup exists, the account is permanently inaccessible. Chainalysis estimates that roughly 20% of all Bitcoin is held in wallets whose keys are presumed lost. Ethereum faces the same problem.

    No spending controls. An EOA cannot limit transaction size, restrict destination addresses, or require multiple signatures. A single compromised key means total loss. Organizations that need shared control over funds must use external multisig contracts instead of native account features. For how those multisig setups work and where they have failed, see how crypto's biggest treasuries get secured and robbed.

    Gas must be paid by the sender. Every transaction requires the signing account to hold ETH for gas. A new user receiving tokens on Ethereum cannot move them without first acquiring ETH from somewhere else. This creates an onboarding dead end that has persisted since Ethereum's launch in 2015.

    What ERC-4337 introduced

    ERC-4337, authored by Vitalik Buterin, Yoav Weiss, Kristof Gazso, Namra Patel, Dror Tirosh, and Shahaf Nacson, went live on Ethereum mainnet in March 2023. It delivers account abstraction without requiring a hard fork, which was a critical design constraint. Previous AA proposals (EIP-2938, EIP-3074) required protocol-level changes that validators and client teams were reluctant to adopt. ERC-4337 sidesteps this by operating entirely at the smart contract layer.

    The standard introduces four components:

    UserOperations. Instead of sending a regular transaction, users submit a UserOperation (UserOp), a data structure that describes the intended action. UserOps enter a separate mempool, not the standard transaction mempool. Each UserOp contains the sender's smart account address, the calldata for the intended action, gas limits, and an optional paymaster address.

    Bundlers. Specialized nodes collect UserOps from the alternative mempool, bundle them into a single on-chain transaction, and submit that transaction to the network. The bundler pays gas upfront and is reimbursed by the smart account or a paymaster. Bundling creates gas savings: the fixed overhead of an Ethereum transaction is paid once per bundle rather than once per user action.

    EntryPoint contract. A singleton contract deployed at a canonical address on every ERC-4337 chain. All bundled UserOps pass through this contract, which calls each smart account's validation function, executes the operation, and handles gas accounting. The EntryPoint contract has been audited by OpenZeppelin and is immutable once deployed, providing a stable trust anchor for the entire system.

    Paymasters. Optional contracts that sponsor gas on behalf of users. A paymaster can pay fees in exchange for ERC-20 tokens, absorb costs as a dapp subsidy, or implement any other payment logic. The paymaster's validatePaymasterUserOp function is called during validation, and the paymaster can reject operations that do not meet its criteria.

    The result: a wallet is no longer a key pair. It is a smart contract with a programmable validateUserOp function that decides whether a given operation is authorized.

    -- Price

    --

    The UserOperation lifecycle in detail

    Understanding how a UserOp moves through the system clarifies what makes AA different from regular transactions.

    1. Construction. The wallet application constructs a UserOp containing the target contract call, gas parameters, and a nonce. If a paymaster is involved, the paymaster address and its approval data are included.
    2. Signing. The user signs the UserOp. The signature format is defined by the smart account, not by the protocol. This is the key flexibility: the smart account can accept ECDSA signatures, passkey signatures, multisig thresholds, or any other scheme.
    3. Submission. The signed UserOp is submitted to a bundler via a JSON-RPC endpoint (eth_sendUserOperation). The bundler validates the UserOp off-chain to ensure it will not revert.
    4. Bundling. The bundler groups multiple UserOps into a single transaction that calls the EntryPoint contract's handleOps function.
    5. Execution. The EntryPoint calls each smart account's validation function. If validation passes, the EntryPoint executes the operation. If a paymaster is present, the EntryPoint charges the paymaster instead of the smart account for gas.
    6. Confirmation. The bundled transaction is included in a block. Each UserOp within it is treated as an independent action that either succeeds or fails without affecting other UserOps in the bundle.

    This lifecycle means the user never interacts with the Ethereum mempool directly. The bundler handles gas estimation, nonce management, and transaction submission. From the user's perspective, the experience is closer to submitting a form on a website than to broadcasting a raw blockchain transaction.

    Passkey wallets and the end of seed phrases

    The most visible consequence of AA is that wallets can now authenticate users with passkeys instead of seed phrases.

    A passkey is a cryptographic credential stored in a device's secure enclave (the Secure Enclave on Apple devices, Titan M on Google Pixels, or TPM on Windows machines). The user authenticates with a fingerprint, face scan, or device PIN. The private key never leaves the hardware.

    Coinbase Smart Wallet, launched in June 2024, uses this approach. Account creation takes under 10 seconds. The user authenticates with a biometric, and the wallet deploys a smart contract account that recognizes that passkey as a valid signer. There is no seed phrase to write down, no browser extension to install. Coinbase reported deploying over 10 million smart accounts through this flow by early 2026.

    Safe (formerly Gnosis Safe) has integrated passkey signing into its smart account framework. Users can add a passkey as one of multiple signers on a multi-signature account, combining the convenience of biometric login with the security of threshold signatures.

    The tradeoff is platform dependency. A passkey created on an iPhone is synced through iCloud Keychain. If a user loses all Apple devices and cannot access iCloud, the passkey is gone. This is why social recovery exists as a complementary layer. Passkey wallets are strongest when combined with at least one backup signer that uses a different authentication method.

    Social recovery: replacing backup with guardians

    Social recovery, proposed by Vitalik Buterin in a 2021 blog post, replaces the single backup (seed phrase) with a group of guardians.

    The mechanism works as follows:

    1. The wallet owner designates a set of guardians. Guardians can be friends, family members, institutional custodians, or even other smart contracts.
    2. The owner sets a threshold. For example, 3 of 5 guardians must approve a recovery request.
    3. If the owner loses access, they initiate a recovery process from a new device. Guardians independently confirm the request.
    4. Once the threshold is met, the smart account replaces the lost signing key with a new one.

    The guardians do not need to coordinate simultaneously. Most implementations include a time delay (typically 24 to 48 hours) during which the original owner can cancel a fraudulent recovery attempt.
    You might also like: What is a crypto wallet? Hot vs cold, seed phrases, and how to choose

    This model eliminates the single point of failure. Losing a device does not mean losing funds, as long as enough guardians are reachable. It also eliminates the physical security burden of storing a seed phrase in a fireproof safe or safety deposit box.

    Guardian selection matters significantly. Guardians should be distributed across different geographies, communication channels, and relationship types. If all guardians are in the same group chat and that chat is compromised, the recovery mechanism becomes an attack vector. Some implementations allow adding institutional guardians (such as a hardware wallet provider or a custodial service) alongside personal contacts, creating defense in depth.

    Gas sponsorship and how paymasters work

    Before AA, a new user who received USDC on Ethereum could not send it anywhere without first acquiring ETH to pay gas. This chicken-and-egg problem has been one of the largest onboarding barriers in crypto.

    Paymasters solve this. A paymaster is a smart contract that agrees to cover gas costs for a UserOperation, subject to its own rules.

    Three common paymaster models have emerged:

    Dapp-sponsored gas. The application pays all gas for its users. The dapp deposits ETH into the paymaster contract and authorizes UserOps from its users. From the user's perspective, transactions are free. Dapps treat gas as a customer acquisition cost, similar to free shipping in e-commerce. This model is particularly effective on Layer 2 networks where gas costs are fractions of a cent per transaction.

    ERC-20 gas payment. The paymaster accepts an ERC-20 token (USDC, DAI) instead of ETH. The user pays for gas, but in a token they already hold. The paymaster swaps the token for ETH to reimburse the bundler. This removes the need for users to hold two separate tokens (the asset they want to use plus ETH for gas).

    Subscription or session-based. The paymaster authorizes a batch of operations within a time window or spending limit. A gaming dapp might sponsor 100 transactions per day per user, for example. Session keys extend this concept further: the user signs a single transaction that grants a temporary key the right to perform specific actions (such as moves in a game) without requiring approval for each one.

    Pimlico, Alchemy, and Stackup operate paymaster infrastructure that dapps can integrate with a few API calls. Alchemy alone has facilitated over one million smart account deployments through its paymaster and bundler services. The economics are straightforward: on Layer 2 networks where gas costs pennies, sponsoring user transactions is trivially cheap.

    EIP-7702 and the road to native account abstraction

    ERC-4337 works without protocol changes, but it is not the end state. Ethereum's roadmap includes EIP-7702 (authored by Vitalik Buterin and Sam Wilson), which was included in the Pectra upgrade.

    EIP-7702 introduces a new transaction type that allows an EOA to temporarily point to smart contract code for the duration of a single transaction. The EOA does not permanently become a smart contract. Instead, it can behave like one when needed, gaining access to batched calls, sponsored gas, and custom validation logic, and then revert to standard EOA behavior.

    This matters for two reasons. First, it lets existing EOA holders (anyone with a MetaMask wallet today) access AA features without migrating to a new account. Migration has been a major friction point: users do not want to move all their assets, permissions, and on-chain history to a new address. Second, it reduces gas costs because the permanent smart account deployment overhead is avoided for users who only need AA features occasionally.

    The long-term vision, discussed across multiple Ethereum Foundation roadmap posts, is that every account on Ethereum becomes a smart account by default. StarkNet and zkSync already implement this: on those networks, every account is a smart contract from creation. EIP-7702 is the bridge that moves Ethereum's existing user base toward this model without breaking backward compatibility.

    Where account abstraction is deployed today

    AA adoption is concentrated on Layer 2 networks where gas costs make experimentation cheap.

    Base has the highest density of smart accounts, driven by Coinbase Smart Wallet. By mid-2026, Base had processed over 30 million UserOperations. The network's sub-cent gas costs make paymaster sponsorship economically trivial.

    Polygon integrated AA early and offers native account abstraction at the protocol level in its zkEVM rollup. Polygon's focus on gaming and social applications aligns well with the session-key model, where users need many low-value transactions without repeated approval prompts.

    Arbitrum and Optimism support ERC-4337 through the standard EntryPoint contract. Major dapps on both chains have begun migrating onboarding flows to smart accounts, particularly DeFi protocols that want to offer gasless first trades. For context on how Ethereum updates enabled wallets to operate as smart contracts, the timeline begins with the ERC-4337 EntryPoint deployment.

    Ethereum mainnet supports ERC-4337 but higher gas costs mean paymaster sponsorship is more expensive. Most mainnet AA usage comes from high-value multi-sig wallets (Safe) rather than consumer dapps. Safe manages over $100 billion in assets across its smart account deployments.

    StarkNet and zkSync implement native account abstraction at the protocol level, meaning every account is a smart contract by default. This is the direction Ethereum's long-term roadmap points toward.

    What this does not cover

    This guide focuses on the mechanism of account abstraction and its immediate consequences for wallet design. It does not cover:

    • Detailed comparison of specific smart account implementations (Safe, Kernel, Biconomy, ZeroDev)
    • The MEV implications of the UserOperation mempool (for MEV mechanics, see what is MEV)
    • Formal security audits of individual paymaster contracts
    • Cross-chain account abstraction and how smart accounts interact with bridging

    Practical checks for evaluating an AA wallet

    Before trusting funds to a smart account wallet, consider these questions:

    Is the smart contract audited? Check whether the wallet's smart account implementation has undergone third-party security audits. Safe's contracts are among the most audited in DeFi. Newer implementations may not have the same track record.

    What happens if the provider shuts down? A passkey wallet tied to a single vendor creates a new form of dependency. Look for wallets that allow adding multiple signers, including a traditional private key as a backup.

    Where is the passkey stored? Understand whether the passkey is device-bound or synced through a cloud provider. iCloud Keychain and Google Password Manager sync passkeys, which is convenient but expands the attack surface to include cloud account security.

    Does the wallet support social recovery? If the only authentication method is a passkey and the passkey is lost, funds may be unrecoverable. Social recovery adds a safety net. Check how many guardians the wallet supports and whether the recovery process has been tested.

    What chains does the smart account work on? A smart account on Ethereum mainnet has a different address than the same account on Arbitrum unless the wallet uses CREATE2 deterministic deployment. Verify cross-chain compatibility before depositing funds on multiple networks.

    What is the upgrade path? Some smart account implementations are upgradeable (the contract logic can be changed by the owner). This is powerful but introduces risk: a compromised upgrade key could rewrite the wallet's validation logic. Check whether upgrades require a time delay or multi-party approval.
    Read more: What is a multisig wallet? How crypto's biggest treasuries get secured and robbed

    What is account abstraction in simple terms? {#faq-question-0996500844}

    Account abstraction turns a crypto wallet from a fixed key pair into a programmable smart contract. Instead of relying on a single seed phrase, the wallet can enforce custom rules for signing, recovery, and gas payment. The user experience changes from "guard these 12 words with your life" to "log in with your fingerprint."

    Is ERC-4337 the only way to implement account abstraction? {#faq-question-3637920355}

    No. ERC-4337 is the most widely adopted standard on Ethereum because it works without protocol changes. StarkNet and zkSync implement native account abstraction at the protocol level. Ethereum's roadmap includes EIP-7702, which allows EOAs to temporarily delegate to smart contract logic, bringing native AA closer to mainnet.

    Are passkey wallets safe? {#faq-question-1336182323}

    Passkey wallets are as secure as the device's secure enclave and the cloud sync service backing them. The private key never leaves the hardware security module, making remote extraction extremely difficult. The main risk is losing access to the cloud account that syncs the passkey across devices. Adding a backup signer or enabling social recovery mitigates this.

    Can I still use a seed phrase with account abstraction? {#faq-question-7805819646}

    Yes. A smart account can accept a traditional private key (derived from a seed phrase) as one of its authorized signers. Many AA wallets allow users to add a seed-phrase-based key as a backup alongside a passkey. The difference is that the seed phrase is no longer the only option.

    What is a paymaster? {#faq-question-7617133445}

    A paymaster is a smart contract in the ERC-4337 system that pays gas fees on behalf of users. It can sponsor transactions entirely (dapp-subsidized), accept ERC-20 tokens as gas payment, or enforce spending limits. Paymasters remove the requirement for users to hold ETH before transacting.

    How does social recovery work? {#faq-question-0088266603}

    The wallet owner designates a group of guardians and sets a threshold (for example, 3 of 5). If the owner loses access, they request recovery from a new device. Once enough guardians approve, the smart account replaces the lost key with a new one. A time delay allows the original owner to cancel fraudulent attempts.

    Do I need to pay gas to deploy a smart account? {#faq-question-7486515770}

    Deployment costs gas, but the user does not necessarily pay it. Many AA wallet providers sponsor the deployment transaction through a paymaster, so the smart account is created at no cost to the user. The deployment typically happens lazily, only when the user sends their first transaction, rather than at account creation.

    Which networks support account abstraction today? {#faq-question-2927869704}

    ERC-4337 is live on Ethereum mainnet, Base, Arbitrum, Optimism, Polygon, Avalanche, BNB Chain, and most major EVM networks. StarkNet and zkSync have native AA built into their protocol. Layer 2 networks see the highest usage because low gas costs make paymaster sponsorship economically viable.

    *Disclaimer: This article is for informational purposes only and does not constitute financial, investment, or legal advice. Cryptocurrency involves significant risk, and you should conduct your own research before making any decisions. Information is accurate as of August 2026.*

    This content is provided for general informational purposes only and doesn't constitute financial, investment, legal, or tax advice. Any events, rewards, online promotions, or related information mentioned herein should not be considered a recommendation, solicitation, or invitation to purchase, sell, trade, or otherwise deal in any crypto assets. Crypto assets are highly volatile and may result in loss. The availability of WEEX services, products, and related events may vary by region. You are responsible for ensuring that your participation is in accordance with applicable local laws and regulations.

    You may also like

    Bitcoin Under Audit: Is the Market Ignoring a New Risk?

    Bitcoin Under Audit: Is the Market Ignoring a New Risk?

    Genesis Allocation Tax-Free, Airdrop Taxed: Tax Authority Sets Boundaries for Token Taxation

    Genesis Allocation Tax-Free, Airdrop Taxed: Tax Authority Sets Boundaries for Token Taxation

    Gold Rises to $4,100: What’s Behind the Surge and Why It Matters

    Gold Rises to $4,100: What’s Behind the Surge and Why It Matters

    Open USD rattled Circle's stock, but its key backers still support USDC

    Open USD rattled Circle's stock, but its key backers still support USDC

    Bitget Japan Exit 2026: Full Timeline, November 1 Close-Only and December 31 Forced Closure

    Bitget Japan Exit 2026: Full Timeline, November 1 Close-Only and December 31 Forced Closure

    Bitget announced on 3 August 2026 that it will stop serving residents of Japan, halting new registrations that day, switching affected accounts to Close-Only mode on 1 November 2026 at 11:00 GMT+9, and force-closing all remaining open positions on 31 December 2026 at 11:00 GMT+9. Crypto withdrawals are stated to remain available after that date, with no withdrawal deadline published.

    Kalshi adds trade surveillance amid $36B lawsuit

    Kalshi adds trade surveillance amid $36B lawsuit

    Preparing for an Exam: How to Explain Cryptocurrency Purchases to the Tax Service

    Preparing for an Exam: How to Explain Cryptocurrency Purchases to the Tax Service

    "We Will Go to Justice": Victims in Brazil Prepare a Massive Lawsuit Against Coinkite

    "We Will Go to Justice": Victims in Brazil Prepare a Massive Lawsuit Against Coinkite

    Bitcoin Could Still Plunge to $40,000 According to Michael Terpin

    Bitcoin Could Still Plunge to $40,000 According to Michael Terpin

    Construction Costs Rise 77% in Dollars Since 2018, While Prices for Off-Plan Units Only Increased 5.4%

    Construction Costs Rise 77% in Dollars Since 2018, While Prices for Off-Plan Units Only Increased 5.4%

    As construction costs continue to rise, the mortgage market loses dynamism due to the tightening of financing conditions, and activity remains far from the levels recorded in 2023.
    Mining Rig vs Mining Pool: Understand the Differences

    Mining Rig vs Mining Pool: Understand the Differences

    CoinEx Research explains the differences between a Bitcoin mining operation and a mining pool.
    Robinhood shrugs off crypto slump as Coinbase activity remains tied to trading cycle

    Robinhood shrugs off crypto slump as Coinbase activity remains tied to trading cycle

    Insurers Bet on Artificial Intelligence to Sell More and Lower Costs

    Insurers Bet on Artificial Intelligence to Sell More and Lower Costs

    Reduce costs, sell more policies, and streamline claims management. These are some of the advantages that artificial intelligence promises for a sector seeking to gain efficiency and regain profitability.
    Debate on Land Law in the Senate: Victoria Villarruel Decides Whether to Allow Anabel Fernández Sagasti to Vote Virtually

    Debate on Land Law in the Senate: Victoria Villarruel Decides Whether to Allow Anabel Fernández Sagasti to Vote Virtually

    The Mendoza senator requested to participate remotely in Thursday's session due to a medical prescription that prevents her from traveling because of her 32-week pregnancy.
    Why Many People Wake Up at 3 AM and How to Improve Sleep, According to Experts

    Why Many People Wake Up at 3 AM and How to Improve Sleep, According to Experts

    Waking up in the middle of the night and being unable to fall back asleep is often interpreted as a modern life problem. However, recent research and historical records indicate that this phenomenon responds to biological mechanisms and habits that have accompanied humans for centuries.
    ARK Invest buys $9.4M in Coinbase and Circle stock

    ARK Invest buys $9.4M in Coinbase and Circle stock

    Science is About to Confirm That Mars Had Life in the Past

    Science is About to Confirm That Mars Had Life in the Past

    NASA's Perseverance rover found minerals and organic compounds that could prove the existence of microorganisms millions of years ago.
    Amazon Hits $3 Trillion Market Cap as AWS AI Cloud Growth Accelerates

    Amazon Hits $3 Trillion Market Cap as AWS AI Cloud Growth Accelerates

    Amazon hits a $3 trillion market cap after AWS posts its fastest growth in 18 quarters. Explore the latest AWS earnings, Alphabet vs. Apple market cap, and how AI cloud demand is reshaping Big Tech.
    Fake Coinbase Advisors, Real Stolen Private Keys: Will This New Law in France Stop the Disaster?

    Fake Coinbase Advisors, Real Stolen Private Keys: Will This New Law in France Stop the Disaster?

    On August 11, France imposes prior consent for telemarketing. Fake Coinbase advisors stealing private keys are already operating outside the law.
    Amazon Surpasses $3 Trillion Thanks to Cloud and AI Boom

    Amazon Surpasses $3 Trillion Thanks to Cloud and AI Boom

    Why Bitcoiners should care that Washington joined a $96B yen rescue to shield over $1 trillion in US Treasuries

    Why Bitcoiners should care that Washington joined a $96B yen rescue to shield over $1 trillion in US Treasuries

    Bitcoin rebounded above $64,000 as traders weighed whether stronger yen and rising Japanese yields would force leveraged positions to unwind.
    A mother dolphin carried her dead calf for several days, and the video moved the world

    A mother dolphin carried her dead calf for several days, and the video moved the world

    The images captured by drones showed the female Fraggle in the Indian Ocean next to her calf's body, while other dolphins accompanied her.
    Iran Challenges the US with a Pressure Strategy over the Strait of Hormuz and Global Trade

    Iran Challenges the US with a Pressure Strategy over the Strait of Hormuz and Global Trade

    Tehran aims to increase the economic costs of the conflict through threats over energy and strategic maritime routes.
    Budget: The Government's "Fiscal Shackles" Project Would Affect 30% of Spending

    Budget: The Government's "Fiscal Shackles" Project Would Affect 30% of Spending

    Almost 7 out of 10 expenditures made by the State cannot be touched because they are essential. Most correspond to the pension system. There are also health and defense expenses.
    CME freezes Nasdaq’s major Bitcoin launch, warning a legal loophole could upend the entire commodities market

    CME freezes Nasdaq’s major Bitcoin launch, warning a legal loophole could upend the entire commodities market

    The SEC review pits Nasdaq’s securities-market route against CME’s claim that direct Bitcoin index contracts must remain under CFTC jurisdiction.
    With a Market Share of Nearly 70%, How Does Upbit Manage the Wealth Anxiety of Korea's 'Ants'?

    With a Market Share of Nearly 70%, How Does Upbit Manage the Wealth Anxiety of Korea's 'Ants'?

    From New Zealand to Paraguay: Tim Payne's Unexpected New Life Among Football, Chipa Guazú, and Viral Fame

    From New Zealand to Paraguay: Tim Payne's Unexpected New Life Among Football, Chipa Guazú, and Viral Fame

    Just two months ago, he was a virtually unknown footballer outside his country. Today, he enjoys a completely different present, with millions of followers on social media.
    What is known about the Fuego volcano in Guatemala, now active and erupting lava

    What is known about the Fuego volcano in Guatemala, now active and erupting lava

    Images released showed explosions, rivers of lava descending the slopes, and large columns of gas and ash reaching heights of 6,000 meters.
    "Days Are Numbered" and "Sell a Kidney": Michael Saylor's Key Quotes on Bitcoin

    "Days Are Numbered" and "Sell a Kidney": Michael Saylor's Key Quotes on Bitcoin

    Daniel Caesar Comes to Argentina for the First Time: How and Where to Buy Tickets for the Show

    Daniel Caesar Comes to Argentina for the First Time: How and Where to Buy Tickets for the Show

    The show will take place on December 5 at the Obras Sanitarias Stadium, as part of his world tour Son of Spergy Tour, during which the musician is presenting his fourth studio album.

    Bitcoin Under Audit: Is the Market Ignoring a New Risk?

    Genesis Allocation Tax-Free, Airdrop Taxed: Tax Authority Sets Boundaries for Token Taxation

    Gold Rises to $4,100: What’s Behind the Surge and Why It Matters

    Open USD rattled Circle's stock, but its key backers still support USDC

    Bitget Japan Exit 2026: Full Timeline, November 1 Close-Only and December 31 Forced Closure

    Bitget announced on 3 August 2026 that it will stop serving residents of Japan, halting new registrations that day, switching affected accounts to Close-Only mode on 1 November 2026 at 11:00 GMT+9, and force-closing all remaining open positions on 31 December 2026 at 11:00 GMT+9. Crypto withdrawals are stated to remain available after that date, with no withdrawal deadline published.

    Kalshi adds trade surveillance amid $36B lawsuit

    ...
    Exclusive new user rewards
    Sign up to get 10 USDT
    Sign up

    Contents

    Introduction
    How Ethereum wallets worked before account abstraction
    What ERC-4337 introduced
    APP
    The UserOperation lifecycle in detail
    Passkey wallets and the end of seed phrases
    Social recovery: replacing backup with guardians
    Gas sponsorship and how paymasters work
    EIP-7702 and the road to native account abstraction
    Where account abstraction is deployed today
    What this does not cover
    Practical checks for evaluating an AA wallet

    Latest articles

    2026/08/04

    Bitcoin Difficulty Drops 15%, ETF Funds Diverge... Crypto.com Highlights Regulation and Real-World Use as Market Drivers

    According to research from Crypto.com, the global virtual asset market last week showed a complex trend influenced by the decline in Bitcoin (BTC) mining difficulty, high volatility in the U.S. stock market, the expansion of blockchain adoption in traditional finance, and simultaneous regulatory iss...
    SPOTSPOT
    00.00%--
    INDEXINDEX
    00.00%--
    APPAPP
    00.00%--
    REALREAL
    00.00%--
    2026/08/03

    What is account abstraction and why seed phrases are becoming optional

    APPAPP
    00.00%--
    STABLESTABLE
    00.00%--
    TRUSTTRUST
    00.00%--
    2026/08/03

    WhatsApp Will No Longer Be Free for Businesses Starting October 2026: Key Changes from Meta

    The change will affect companies that use the app to respond to customer inquiries through operators, bots, or Artificial Intelligence agents.
    APPAPP
    00.00%--
    METAMETA
    00.00%--
    2026/08/03

    How Upbit Captures the Wealth Anxiety of Korea's 'Ants' with Nearly 70% Market Share?

    APPAPP
    00.00%--
    SPOTSPOT
    00.00%--
    CAPCAP
    00.00%--
    2026/08/03

    From Storing Coins to AI-Driven Payments: Dissecting MetaMask's Open Currency Strategy

    APPAPP
    00.00%--
    BASEDBASED
    00.00%--
    More

    Latest coin listings on WEEX

    logoCommunity
    iconiconiconiconiconiconicon
    Customer Support:@weikecs
    Business Cooperation:@weikecs
    Quant Trading & MM:bd@weex.com
    VIP Program:support@weex.com
    • About Us
    • Announcement Center
    • Media Kit
    • WEEX Community
    • WXT Zone
    • Announcement
    • Legal Statement
    • Risk Disclosure
    • Terms and Policies
    • Privacy Policy
    • Whistleblower Notice
    • AML/CTF Policy
    • Law Enforcement
    • User Guide
    • Product Launches
    • Crypto News
    • Product Launches
    • Crypto Wiki
    • Learn
    • Q&A
    • Spot
    • Futures
    • Glossary
    • VIP Program
    • Download
    • Affiliate
    • Protection Fund
    • Proof of Reserves
    • Sitemap
    • ETFs
    • Crypto Prices
    • Price Predictions
    • WXT Price
    • BTC Price
    • ETH Price
    • DOGE Price
    • How to Buy Crypto
    • How to Buy WXT
    • How to Buy BTC
    • How to Buy ETH
    • How to Buy DOGE
    • Help Center
    • Fee Schedule
    • Trading Rules
    • WEEX Academy
    • Contact Verifier
    • Submit Feedback
    • About Us
    • Announcement Center
    • Media Kit
    • WEEX Community
    • WXT Zone
    • Announcement
    • Help Center
    • Fee Schedule
    • Trading Rules
    • WEEX Academy
    • Contact Verifier
    • Submit Feedback
    • Customer Support Bot
    • VIP Services
    • Legal Statement
    • Risk Disclosure
    • Terms and Policies
    • Privacy Policy
    • Whistleblower Notice
    • AML/CTF Policy
    • Law Enforcement
    • Proof of Reserves
    • Invite Friends
    • OTC
    • Download
    • Affiliate
    • VIP Program
    • API
    • Broker
    • Listing Application
    • Affiliate T&C
    • Sitemap
    • Futures
    • Spot
    • Copy Trade
    • Markets
    • WEEX Store
    • User Guide
    • Product Launches
    • Crypto News
    • Product Launches
    • Crypto Wiki
    • Learn
    • Q&A
    • Spot
    • Futures
    • Glossary
    • VIP Program
    • Download
    • Affiliate
    • Protection Fund
    • Proof of Reserves
    • Sitemap
    • ETFs
    • Crypto Prices
    • Price Predictions
    • WXT Price
    • BTC Price
    • ETH Price
    • DOGE Price
    • How to Buy Crypto
    • How to Buy WXT
    • How to Buy BTC
    • How to Buy ETH
    • How to Buy DOGE
    • About Us
    • Announcement Center
    • Media Kit
    • WEEX Community
    • WXT Zone
    • Announcement
    • Help Center
    • Fee Schedule
    • Trading Rules
    • WEEX Academy
    • Contact Verifier
    • Submit Feedback
    • Legal Statement
    • Risk Disclosure
    • Terms and Policies
    • Privacy Policy
    • Whistleblower Notice
    • AML/CTF Policy
    • Law Enforcement
    • Customer Support Bot
    • VIP Services
    • Futures
    • Spot
    • Copy Trade
    • Markets
    • WEEX Store
    • Proof of Reserves
    • Invite Friends
    • OTC
    • Download
    • Affiliate
    • VIP Program
    • API
    • Broker
    • Listing Application
    • Affiliate T&C
    • Sitemap
    • User Guide
    • Product Launches
    • Crypto News
    • Product Launches
    • Crypto Wiki
    • Learn
    • Q&A
    • Spot
    • Futures
    • Glossary
    • VIP Program
    • Download
    • Affiliate
    • Protection Fund
    • Proof of Reserves
    • Sitemap
    • ETFs
    • Crypto Prices
    • Price Predictions
    • WXT Price
    • BTC Price
    • ETH Price
    • DOGE Price
    • How to Buy Crypto
    • How to Buy WXT
    • How to Buy BTC
    • How to Buy ETH
    • How to Buy DOGE

    Where new wealth is made

    Download app

    Sign Up
    h5 logo
    Download