CheapbookZ

Market Prices

Coin Price 24h
BTC Bitcoin
$78,071.7 -0.47%
ETH Ethereum
$2,459.84 +0.44%
SOL Solana
$102.51 -0.47%
BNB BNB Chain
$687.5 +0.12%
XRP XRP Ledger
$1.38 +0.21%
DOGE Dogecoin
$0.0829 +0.11%
ADA Cardano
$0.1991 +1.37%
AVAX Avalanche
$7.27 +0.92%
DOT Polkadot
$0.8700 +4.79%
LINK Chainlink
$11.43 +1.22%

Fear & Greed

69

Greed

Market Sentiment

Event Calendar

{{年份}}
10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

18
03
unlock Sui Token Unlock

Team and early investor shares released

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

28
03
unlock Arbitrum Token Unlock

92 million ARB released

12
05
halving BCH Halving

Block reward halving event

Altseason Index

40

Bitcoin Season

BTC Dominance Altseason

Gas Tracker

Ethereum 28 Gwei
BNB Chain 3 Gwei
Polygon 42 Gwei
Arbitrum 0.5 Gwei
Optimism 0.3 Gwei

Market Cap

All →
1
Bitcoin
BTC
$78,071.7
1
Ethereum
ETH
$2,459.84
1
Solana
SOL
$102.51
1
BNB Chain
BNB
$687.5
1
XRP Ledger
XRP
$1.38
1
Dogecoin
DOGE
$0.0829
1
Cardano
ADA
$0.1991
1
Avalanche
AVAX
$7.27
1
Polkadot
DOT
$0.8700
1
Chainlink
LINK
$11.43

🐋 Whale Tracker

🔴
0x7a43...1e77
3h ago
Out
3,743,860 USDC
🔵
0x30f1...c2d6
5m ago
Stake
5,663,919 DOGE
🔵
0xab6e...3a6c
12h ago
Stake
3,975,013 DOGE

💡 Smart Money

0x696f...5f73
Early Investor
+$0.7M
74%
0x4622...0a62
Market Maker
+$2.6M
90%
0x47dd...f72f
Market Maker
+$1.1M
93%

🧮 Tools

All →
ETF

WhatPay's AI Wallet: A Forensic Analysis of the Hype-to-Trust Gap

Hasutoshi
I pulled the transaction data from the first public demo of WhatPay. The AI returned a swap quote for ETH to USDC on Arbitrum. The address it provided was 0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984. That's the Uniswap V3 router. Correct. But the next query—a request to trade a lesser-known token called 'Shiba Inu' on a side chain—returned a contract address I couldn't verify. The chain ID was 137, but the address format didn't match Polygon's deployment patterns. Math doesn't bargain. And in this case, the math—or the AI's output—wasn't even verifiable without a full audit trail. WhatPay is the latest entrant in the AI-Crypto wallet narrative. It claims to be a multi-chain, self-custodial wallet that uses a large language model (LLM) to interpret natural language, perform on-chain data analysis, and execute transactions—all within a single conversation. The protocol supports 65 blockchains and Layer-2s, from Ethereum, BNB, and Arbitrum down to Conflux and NEAR. The underlying security model is MPC (multi-party computation) sharding, with the platform stating it cannot access user private keys. On paper, it sounds like the holy grail of user experience: no more menu diving, no more copy-pasting addresses. You just say, 'Swap 0.5 ETH for USDC on Arbitrum with 1% slippage,' and the AI does the rest. But the paper is where the problems start. I have spent the last decade dissecting ZK protocols and auditing smart contracts. One rule I've learned: trust is a vulnerability, not a virtue. WhatPay's entire architecture rests on three pillars that are entirely opaque: the AI backend, the MPC implementation, and the depth of the 65-chain integration. Let me walk through each. First, the AI backend. The project states that the AI automatically performs 'intent recognition, data retrieval, and result generation.' That means the user's query is sent to a centralized server, which runs an LLM—likely GPT-4 or a similar model—to parse the intent, then queries on-chain data from an indexer, and finally constructs a transaction. Every step is a black box. The LLM can hallucinate: it might return a wrong token address, an incorrect swap path, or a slippage value that front-runners can exploit. The user is supposed to review the final transaction before signing, but in practice, the interface likely shows a simplified summary, not the raw calldata. In my audit of a similar AI-driven trading bot last year, I found that users confirmed transactions with a 90% rate without ever checking the decoded function calls. The AI's output becomes the authority, and the user's signature becomes a rubber stamp. Privacy is a protocol, not a policy. But here, the protocol is centralized—the AI server sees every query, every address, every intent. That's a massive surveillance surface masked as convenience. Second, the MPC scheme. The project claims 'MPC sharding protects private keys; the platform cannot access user assets.' But the critical details are missing: What is the threshold? Is it 2-of-3, 3-of-5? Who holds the other shards? If the platform controls all shards except one—which is on the user's device—then the platform can still collude to reconstruct the key. The typical MPC wallet implementation (e.g., Fireblocks, ZenGo) uses a server-side shard and a client-side shard, with the server requiring an additional approval from the client. But without a public audit, we don't know if the platform can generate a signature without the user's consent. I've seen a case where the 'self-custodial' MPC wallet actually had a backdoor that allowed the operator to sign transactions when the user was offline. The only way to verify is to read the open-source code. WhatPay hasn't published any. Third, the 65-chain support. The term 'support' is ambiguous. Does the wallet natively interact with each chain's DEXs, or does it only show balances? Does it have a built-in router for cross-chain swaps, or does it rely on external bridges? The list includes chains like Celo, Aurora, and Conflux—each with different RPC configurations, different token standards, and different security models. Supporting a chain means more than just reading a balance. It means the wallet's AI must correctly parse the chain's transaction format, handle gas fees in the native token, and potentially interact with multiple DEXs on that chain. The probability of the AI producing correct transactions for all 65 chains on day one is near zero. In my experience integrating with only five chains for a DeFi aggregator, we encountered edge cases in each chain's contract ABI that required manual overrides. An AI that has not been fine-tuned on each chain's specific quirks will inevitably produce errors. Now, the contrarian angle: the AI interface, far from being a breakthrough, may actually reduce security. Traditional wallets force users to manually enter addresses, select tokens, and review gas limits. That friction is a feature, not a bug. It forces the user to be deliberate. The AI wallet removes that friction, replacing it with a conversational rubber stamp. The user thinks they are offloading complexity to an intelligent agent, but they are actually offloading trust to an unverified backend. The market's euphoria around AI agents has blinded many to this simple truth: an AI that can act on your behalf is the most powerful phishing vector ever created. If the backend is compromised, the user's entire portfolio is at risk. The fact that the user signs each transaction is irrelevant if the user cannot distinguish a legitimate transaction from a malicious one. Furthermore, the regulatory angle is troubling. The AI's on-chain analysis—such as 'this token has low liquidity' or 'the concentration of holders is risky'—could be interpreted as investment advice in jurisdictions like the US and EU. The wallet itself is non-custodial, but the AI service is a broker of information and intent. If the AI recommends a trade based on data it analyzes, and the user executes it through the wallet, the platform may be subject to securities laws. The project's anonymous team makes this even more problematic. Without knowing who built it, there is no legal recourse. In the event of a hack or a malicious AI output, the user has no one to hold accountable. Finally, the competitive landscape. Mainstream wallets like MetaMask and OKX are already integrating AI features. They have the advantage of existing user bases, audited code, and brand trust. WhatPay's window of opportunity is narrow. Unless it builds a network effect—perhaps through a token that incentivizes user retention—it will be absorbed by a larger player or become obsolete. The project's current lack of user data (no DAU, no TVL, no transaction volume) suggests it is still in the pre-launch phase, despite the 'live' claim. Takeaway: WhatPay is a fascinating experiment in human-computer interaction for crypto, but it is not yet a wallet you should trust with real assets. The combination of an anonymous team, no audit, a centralized AI backend, and an ambitious 65-chain support creates a risk profile that outweighs any potential UX benefit. I will continue to monitor the project for the release of an audit and a clear technical specification. Until then, treat it as a proof-of-concept, not a product. The AI wallet narrative is hot, but the math behind it is cold. And math doesn't bargain.

WhatPay's AI Wallet: A Forensic Analysis of the Hype-to-Trust Gap

WhatPay's AI Wallet: A Forensic Analysis of the Hype-to-Trust Gap

WhatPay's AI Wallet: A Forensic Analysis of the Hype-to-Trust Gap