Author: Zhixiong Pan You actually already have a "hardware wallet" in your pocket. The mobile phones and computers we use every day actually have built-in security chips. For example, there is the "Secure Enclave" in iPhones, or Keystore / Trust Zone / StrongBox in Android phones. This isolated physical area is usually called a TEE (Trusted Execution Environment). Its characteristic is that it is "in-only": private keys are generated inside and never leave this physical area; external entities can only request it to sign data. This is essentially the standard for hardware wallets. These chips generally use an industry-standard algorithm curve selected by NIST (National Institute of Standards and Technology): secp256r1, when signing. This is also the cornerstone behind WebAuthn and FIDO2 (such as your fingerprint login and Face ID). A gap of just one letter The awkward thing is that Ethereum does not natively support this mainstream secp256r1. Back then, the Bitcoin community chose the relatively obscure secp256k1 due to concerns about the potential presence of "national backdoors" in the NIST curve. Therefore, Ethereum followed the tradition of using this curve when designing its account system. Although r1 and k1 seem to differ by only one letter, they are mathematically completely different languages. This leads to a huge pain point: the security chip in your phone is completely clueless about Ethereum and cannot directly sign Ethereum transactions. Since we can't change the hardware, we'll just make this version "compatible" with it. Ethereum obviously cannot force Apple or Samsung to change their chip designs to accommodate the secp256k1; the only way is for Ethereum to adapt to the secp256r1 itself. Is it possible to use smart contract code to verify the r1 signature? Theoretically, yes, but the mathematical calculations are too complex, and running a verification could consume hundreds of thousands of gas, which is completely impractical from an economic standpoint. Therefore, in the Fusaka upgrade, developers unleashed a powerful tool: precompile contracts. This is equivalent to opening a "backdoor" or "plug-in" within the Ethereum Virtual Machine (EVM). Instead of having the EVM calculate step by step, this verification function is directly written into the client's underlying code. Developers only need to call a specific address to complete the verification at extremely low cost. In EIP-7951, this cost was fixed at 6900 Gas, dropping directly from hundreds of thousands to thousands, finally entering the range of "can be used in real products in daily life". The final piece of the puzzle in account abstraction The successful implementation of this EIP means that we can finally sign and authorize smart accounts on Ethereum within the TEE environment of a mobile phone. It's important to note that this does not apply to your current MetaMask EOA address (because their public key generation logic is still k1). It's specifically designed for "Account Abstraction" (AA Wallet). In the future, your wallet will no longer be a mnemonic phrase, but a smart contract. This contract states: "As long as the fingerprint (r1 signature) is verified to be correct, the transfer is allowed." Summarize EIP-7951 may not make mnemonic phrases disappear overnight, but it has finally removed the biggest stumbling block on the road to the widespread adoption of Ethereum. Before this, users were always faced with a cruel choice: Want "bank-grade" self-security? You have to spend money to buy OneKey, Keystone, or Ledger, and you have to keep your mnemonic phrase safe like you would a gold bar; Want the smoothest experience? You can only store your coins on an exchange or in a custodial wallet, at the cost of giving up control (sacrificing decentralization). After the Fusaka upgrade, this choice will no longer exist. With the implementation of EIP-7951, "mobile phone as hardware wallet" will gradually become a reality. For the next billion new users, they may not need to know what a "private key" is, nor will they need to face the psychological pressure of copying 12 words. They only need to scan their face and press their fingerprint, just like buying coffee normally. The iPhone's security chip on the back will call secp256r1 to sign the transaction and complete the verification through Ethereum's native pre-compiled contract. This is the right way for Ethereum to embrace its next billion users: instead of arrogantly demanding that users learn complex cryptography, it should humble itself to be compatible with common internet standards and proactively reach into users' pockets.Author: Zhixiong Pan You actually already have a "hardware wallet" in your pocket. The mobile phones and computers we use every day actually have built-in security chips. For example, there is the "Secure Enclave" in iPhones, or Keystore / Trust Zone / StrongBox in Android phones. This isolated physical area is usually called a TEE (Trusted Execution Environment). Its characteristic is that it is "in-only": private keys are generated inside and never leave this physical area; external entities can only request it to sign data. This is essentially the standard for hardware wallets. These chips generally use an industry-standard algorithm curve selected by NIST (National Institute of Standards and Technology): secp256r1, when signing. This is also the cornerstone behind WebAuthn and FIDO2 (such as your fingerprint login and Face ID). A gap of just one letter The awkward thing is that Ethereum does not natively support this mainstream secp256r1. Back then, the Bitcoin community chose the relatively obscure secp256k1 due to concerns about the potential presence of "national backdoors" in the NIST curve. Therefore, Ethereum followed the tradition of using this curve when designing its account system. Although r1 and k1 seem to differ by only one letter, they are mathematically completely different languages. This leads to a huge pain point: the security chip in your phone is completely clueless about Ethereum and cannot directly sign Ethereum transactions. Since we can't change the hardware, we'll just make this version "compatible" with it. Ethereum obviously cannot force Apple or Samsung to change their chip designs to accommodate the secp256k1; the only way is for Ethereum to adapt to the secp256r1 itself. Is it possible to use smart contract code to verify the r1 signature? Theoretically, yes, but the mathematical calculations are too complex, and running a verification could consume hundreds of thousands of gas, which is completely impractical from an economic standpoint. Therefore, in the Fusaka upgrade, developers unleashed a powerful tool: precompile contracts. This is equivalent to opening a "backdoor" or "plug-in" within the Ethereum Virtual Machine (EVM). Instead of having the EVM calculate step by step, this verification function is directly written into the client's underlying code. Developers only need to call a specific address to complete the verification at extremely low cost. In EIP-7951, this cost was fixed at 6900 Gas, dropping directly from hundreds of thousands to thousands, finally entering the range of "can be used in real products in daily life". The final piece of the puzzle in account abstraction The successful implementation of this EIP means that we can finally sign and authorize smart accounts on Ethereum within the TEE environment of a mobile phone. It's important to note that this does not apply to your current MetaMask EOA address (because their public key generation logic is still k1). It's specifically designed for "Account Abstraction" (AA Wallet). In the future, your wallet will no longer be a mnemonic phrase, but a smart contract. This contract states: "As long as the fingerprint (r1 signature) is verified to be correct, the transfer is allowed." Summarize EIP-7951 may not make mnemonic phrases disappear overnight, but it has finally removed the biggest stumbling block on the road to the widespread adoption of Ethereum. Before this, users were always faced with a cruel choice: Want "bank-grade" self-security? You have to spend money to buy OneKey, Keystone, or Ledger, and you have to keep your mnemonic phrase safe like you would a gold bar; Want the smoothest experience? You can only store your coins on an exchange or in a custodial wallet, at the cost of giving up control (sacrificing decentralization). After the Fusaka upgrade, this choice will no longer exist. With the implementation of EIP-7951, "mobile phone as hardware wallet" will gradually become a reality. For the next billion new users, they may not need to know what a "private key" is, nor will they need to face the psychological pressure of copying 12 words. They only need to scan their face and press their fingerprint, just like buying coffee normally. The iPhone's security chip on the back will call secp256r1 to sign the transaction and complete the verification through Ethereum's native pre-compiled contract. This is the right way for Ethereum to embrace its next billion users: instead of arrogantly demanding that users learn complex cryptography, it should humble itself to be compatible with common internet standards and proactively reach into users' pockets.

The "Trojan Horse" in the Ethereum Fusaka upgrade: How to turn billions of mobile phones into hardware wallets?

2025/12/02 08:00
4 min read
For feedback or concerns regarding this content, please contact us at crypto.news@mexc.com

Author: Zhixiong Pan

You actually already have a "hardware wallet" in your pocket.

The mobile phones and computers we use every day actually have built-in security chips. For example, there is the "Secure Enclave" in iPhones, or Keystore / Trust Zone / StrongBox in Android phones.

This isolated physical area is usually called a TEE (Trusted Execution Environment). Its characteristic is that it is "in-only": private keys are generated inside and never leave this physical area; external entities can only request it to sign data.

This is essentially the standard for hardware wallets. These chips generally use an industry-standard algorithm curve selected by NIST (National Institute of Standards and Technology): secp256r1, when signing. This is also the cornerstone behind WebAuthn and FIDO2 (such as your fingerprint login and Face ID).

A gap of just one letter

The awkward thing is that Ethereum does not natively support this mainstream secp256r1.

Back then, the Bitcoin community chose the relatively obscure secp256k1 due to concerns about the potential presence of "national backdoors" in the NIST curve. Therefore, Ethereum followed the tradition of using this curve when designing its account system.

Although r1 and k1 seem to differ by only one letter, they are mathematically completely different languages. This leads to a huge pain point: the security chip in your phone is completely clueless about Ethereum and cannot directly sign Ethereum transactions.

Since we can't change the hardware, we'll just make this version "compatible" with it.

Ethereum obviously cannot force Apple or Samsung to change their chip designs to accommodate the secp256k1; the only way is for Ethereum to adapt to the secp256r1 itself.

Is it possible to use smart contract code to verify the r1 signature? Theoretically, yes, but the mathematical calculations are too complex, and running a verification could consume hundreds of thousands of gas, which is completely impractical from an economic standpoint.

Therefore, in the Fusaka upgrade, developers unleashed a powerful tool: precompile contracts. This is equivalent to opening a "backdoor" or "plug-in" within the Ethereum Virtual Machine (EVM). Instead of having the EVM calculate step by step, this verification function is directly written into the client's underlying code. Developers only need to call a specific address to complete the verification at extremely low cost.

In EIP-7951, this cost was fixed at 6900 Gas, dropping directly from hundreds of thousands to thousands, finally entering the range of "can be used in real products in daily life".

The final piece of the puzzle in account abstraction

The successful implementation of this EIP means that we can finally sign and authorize smart accounts on Ethereum within the TEE environment of a mobile phone.

It's important to note that this does not apply to your current MetaMask EOA address (because their public key generation logic is still k1).

It's specifically designed for "Account Abstraction" (AA Wallet). In the future, your wallet will no longer be a mnemonic phrase, but a smart contract. This contract states:

"As long as the fingerprint (r1 signature) is verified to be correct, the transfer is allowed."

Summarize

EIP-7951 may not make mnemonic phrases disappear overnight, but it has finally removed the biggest stumbling block on the road to the widespread adoption of Ethereum.

Before this, users were always faced with a cruel choice: Want "bank-grade" self-security? You have to spend money to buy OneKey, Keystone, or Ledger, and you have to keep your mnemonic phrase safe like you would a gold bar; Want the smoothest experience? You can only store your coins on an exchange or in a custodial wallet, at the cost of giving up control (sacrificing decentralization).

After the Fusaka upgrade, this choice will no longer exist.

With the implementation of EIP-7951, "mobile phone as hardware wallet" will gradually become a reality. For the next billion new users, they may not need to know what a "private key" is, nor will they need to face the psychological pressure of copying 12 words.

They only need to scan their face and press their fingerprint, just like buying coffee normally. The iPhone's security chip on the back will call secp256r1 to sign the transaction and complete the verification through Ethereum's native pre-compiled contract.

This is the right way for Ethereum to embrace its next billion users: instead of arrogantly demanding that users learn complex cryptography, it should humble itself to be compatible with common internet standards and proactively reach into users' pockets.

Market Opportunity
Helium Mobile Logo
Helium Mobile Price(MOBILE)
$0,0001671
$0,0001671$0,0001671
-%1,29
USD
Helium Mobile (MOBILE) Live Price Chart
Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact crypto.news@mexc.com for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

Firestorm follows Trump plan to destroy Jefferson-era White House fixtures

Firestorm follows Trump plan to destroy Jefferson-era White House fixtures

President Donald Trump already destroyed the White House’s historic East Wing to build his ballroom, and now he has announced plans to rip out a fixture installed
Share
Alternet2026/03/25 08:52
IP Hits $11.75, HYPE Climbs to $55, BlockDAG Surpasses Both with $407M Presale Surge!

IP Hits $11.75, HYPE Climbs to $55, BlockDAG Surpasses Both with $407M Presale Surge!

The post IP Hits $11.75, HYPE Climbs to $55, BlockDAG Surpasses Both with $407M Presale Surge! appeared on BitcoinEthereumNews.com. Crypto News 17 September 2025 | 18:00 Discover why BlockDAG’s upcoming Awakening Testnet launch makes it the best crypto to buy today as Story (IP) price jumps to $11.75 and Hyperliquid hits new highs. Recent crypto market numbers show strength but also some limits. The Story (IP) price jump has been sharp, fueled by big buybacks and speculation, yet critics point out that revenue still lags far behind its valuation. The Hyperliquid (HYPE) price looks solid around the mid-$50s after a new all-time high, but questions remain about sustainability once the hype around USDH proposals cools down. So the obvious question is: why chase coins that are either stretched thin or at risk of retracing when you could back a network that’s already proving itself on the ground? That’s where BlockDAG comes in. While other chains are stuck dealing with validator congestion or outages, BlockDAG’s upcoming Awakening Testnet will be stress-testing its EVM-compatible smart chain with real miners before listing. For anyone looking for the best crypto coin to buy, the choice between waiting on fixes or joining live progress feels like an easy one. BlockDAG: Smart Chain Running Before Launch Ethereum continues to wrestle with gas congestion, and Solana is still known for network freezes, yet BlockDAG is already showing a different picture. Its upcoming Awakening Testnet, set to launch on September 25, isn’t just a demo; it’s a live rollout where the chain’s base protocols are being stress-tested with miners connected globally. EVM compatibility is active, account abstraction is built in, and tools like updated vesting contracts and Stratum integration are already functional. Instead of waiting for fixes like other networks, BlockDAG is proving its infrastructure in real time. What makes this even more important is that the technology is operational before the coin even hits exchanges. That…
Share
BitcoinEthereumNews2025/09/18 00:32
Ethereum Exodus: Seven New Wallets Withdraw $161M from Binance in 16-Hour Surge

Ethereum Exodus: Seven New Wallets Withdraw $161M from Binance in 16-Hour Surge

BitcoinWorld Ethereum Exodus: Seven New Wallets Withdraw $161M from Binance in 16-Hour Surge In a significant cryptocurrency market development, seven previously
Share
bitcoinworld2026/03/25 09:40