KawaChain
BTC $78,039.9 +0.52%
ETH $2,454.98 +0.86%
SOL $104.64 +1.25%
BNB $693.3 +0.83%
XRP $1.39 +0.32%
DOGE $0.0845 +0.11%
ADA $0.2004 +0.35%
AVAX $7.32 +0.95%
DOT $0.8430 +0.67%
LINK $11.36 +0.42%
⛽ ETH Gas 28 Gwei
Fear&Greed
69

BlueWallet 8.0.0: Custom Entropy Is Not the Wallet Revolution You Think

CryptoPlanB
Meme Coins

BlueWallet shipped version 8.0.0 on a quiet release day. The changelog gives custom entropy one line. That line transfers the most important security decision in Bitcoin self-custody from the operating system to the human holding the phone. The market did not blink. The tape did not move. But the threat model shifted under our feet.

I have been reading this tape for nearly three decades. I have read it as a quant, as a smart contract auditor, and as a person who lost months of sleep to an integer overflow that a founder assured me was impossible to exploit. When a wallet feature promises more control, my first response is not gratitude. It is a question. Who is being asked to do what, and who pays if the answer is wrong?

The block confirms what the eyes missed. The eyes see empowerment. The block sees a new failure domain.

Context: How Bitcoin Keys Are Born

To understand why custom entropy matters, you have to understand how a Bitcoin private key is born. It is not a certificate. It is not an account. It is a number selected from a staggeringly large space. That selection must be unpredictable. If it is predictable, the private key can be reconstructed by anyone with enough time and computing power.

The BIP39 standard governs the most common method for turning this number into something a human can write down. It takes entropy, a sequence of random bits, and converts it into a mnemonic phrase of 12 to 24 words. That phrase is the seed from which all wallet keys are derived. Lose the phrase, lose the funds. Expose the phrase, lose the funds. There is no reset button.

The entropy normally comes from the device's random number generator. On modern iPhones and Android devices, the operating system draws random data from a hardware-based source. That source is generally considered strong. But 'generally considered' is not a security guarantee. If the generator is compromised, if the device is running in a cloned virtual machine, if the boot sequence is deterministic at the moment of key generation, the wallet can be derived by an attacker.

The history of digital currency is a graveyard of weak randomness. In 2013, a vulnerability in Android's SecureRandom caused Bitcoin wallets to generate keys from an insecure pool. The result was a wave of swept balances and stolen funds. The damage was not theoretical. It was measured in lost bitcoins.

BlueWallet is an open-source, non-custodial Bitcoin wallet. It has been in the ecosystem since 2016. It was one of the first mobile wallets to ship Lightning Network support. It is recommended to newcomers because it is free, transparent, and non-commercial. It is not a protocol. It does not have a token. It is infrastructure.

Version 8.0.0 adds an option to inject user-generated entropy into the key generation process. The user can tap, swipe, or type arbitrary data. The wallet mixes that data into the entropy pool before deriving the seed phrase. The user becomes a co-signer of their own randomness.

The announcement frames this as an enhancement to user control. The deeper commentary implies that a software wallet with custom entropy could reduce reliance on hardware wallets for cold storage. That implication deserves a laser, not applause.

Core Analysis: What Custom Entropy Actually Does

Custom entropy is a process of mixing. The wallet begins with entropy from the system RNG. It then takes user-provided data and combines it with the system entropy using a cryptographic mixing function. The resulting value is what gets encoded into the seed phrase. The design goal is that an attacker who compromises the system RNG would still be missing the user's contribution. The design goal is defense in depth.

There are multiple ways to implement the mixing. The safest approach is to use a well-studied construction such as HMAC-SHA256 or PBKDF2 with the system entropy and user input as inputs. A naive approach, such as simply concatenating the two, might not produce the same quality of output. If the mixing function is weak, the value of the feature collapses. The code has to be inspected. The code has to be audited. If you cannot see the exact mixing construction, you are not really using a secure feature. You are using a hope.

Based on my audit experience, I can tell you that the gap between 'looks safe' and 'is safe' is the most expensive gap in this industry. In 2017, a token project hired me to review their distribution contract. The batchMint function looked clean. A developer said the code was safe. I found an integer overflow. I built a proof of concept. It drained the testnet allocation in under a minute. The patch was four lines. The incident did not cost the project money because the code was never deployed. But the lesson stuck. Code does not lie, but auditors do. And in the absence of an auditor, the user is the auditor.

A good construction also resists length extension and canonicalization. The user input should be hashed with a length-prefix to avoid ambiguity. If the input is short, the output should still be full entropy. The system RNG output should be mixed, not overwritten. If the developer used a simple XOR, there is a risk. XOR of two predictable strings can cancel out and produce a constant. I have seen this failure in more than one proprietary network.

The safest implementation is to treat the system entropy and the user input as two secret shares. The output should be computationally indistinguishable from random even if one share is fully known. That is the standard cryptographic requirement. If the code meets that requirement, the feature is sound. If it does not, the feature is a decoration.

The feature's value depends on the quality of the user's input. If the user swipes a thumb for one second, the added unpredictability is small. Touchscreen coordinates, timing, and pressure are constrained. Malware with screen recording access can observe the swipe. If the malware sees the input, the custom entropy is not a secret. The defense-in-depth claim evaporates.

How do you measure entropy? The mathematical definition is information-theoretic. A source has n bits of entropy if an attacker needs 2 to the n guesses to replicate it. The entropy of a user's swipe is not a fixed number. It depends on the attacker's knowledge of the user's behavior. A cybersecurity firm that tracks the user's prior swipes can predict the next swipe with high accuracy. That means the entropy contribution of the swipe is low for that attacker. A random stranger would have a much harder time predicting it. Security does not care about the casual observer. It cares about the worst attacker. From the perspective of the worst attacker, the swipe is nearly worthless.

The Mobile RNG Question

The common motivation for custom entropy is the suspicion that mobile RNGs are not trustworthy. The suspicion is understandable. But the threat model is frequently misstated.

The RNG inside a modern mobile SoC is a hardware block that samples physical noise. It is designed to pass statistical tests. It is a closed box. The user cannot verify its output directly. The phone's operating system, the boot sequence, the secure enclave, all of this is proprietary infrastructure. A security-conscious Bitcoin user is right to be suspicious of any closed black box. The hash of the truth cannot be verified if the code is secret.

A true random number generator samples physical noise. A pseudorandom generator derives bytes from a seed. The system RNG on a modern phone is a true RNG at its core, but the operating system often fronts it with a pseudorandom generator for performance. The security of the whole chain depends on the seed and the algorithm. If the seed is predictable, the output is predictable. Custom entropy can act as a seed supplement for that pseudorandom generator. The user's input is mixed in at the entropy pool level. The construction is not trivial.

The mobile RNG is thus not proven bad. It is simply unprovable. In a security model that is built on verifiable claims, an unverifiable component is a liability. Custom entropy is a way to introduce a source of randomness that the user can observe and control. If the user rolls physical dice and enters the results, the resulting entropy has a real mathematical basis. Fifty dice rolls produce roughly 129 bits of entropy. That is undeniable.

This is the feature's legitimate value. For a threat model that includes a compromised or opaque system RNG, physical dice input is a compensative control. The user does not need to trust the phone for the raw entropy. But the user still needs to trust the phone to mix and handle the entropy correctly. At least the raw material is not completely opaque.

However, the feature does not solve the post-generation storage problem. The private key is derived from the seed phrase. That key will be used in the phone's memory. The phone is a general-purpose computer with an internet connection, an app store, and tens of thousands of third-party libraries. The threat model of a hardware wallet is based on the idea that the private key is handled by a dedicated secure chip that is isolated from the general-purpose operating system. Software cannot mimic a hardware boundary by adding entropy. This is the category error at the heart of the 'replace hardware wallet' claim.

Modern phones have a secure hardware chip that stores biometric data and encryption keys. Some wallets store private keys inside the enclave. BlueWallet is a regular app, not a secure-enclave app. The private keys are handled in the app's memory. The enclosure of an app is not the same as the enclave of the phone. This distinction is critical for the hardware wallet comparison. Adding custom entropy does not move the app into the enclave. The key remains in a user-space process.

The relevant question is not whether the phone's RNG is secure. The relevant question is whether the user trusts the phone at all. A Bitcoin maximalist will say: trust the phone as little as possible. Custom entropy gives a false impression of minimizing trust in the phone. But the phone still generates the mnemonic, stores it, signs transactions, and broadcasts them. The phone is the trusted party for every step. The only part the user controls is the initial randomness. That is a small slice of the trust boundary. The rest is a closed box.

The User Is the Weakest Node

Crypto security has a well-known hierarchy. The weakest node is almost always the human. The most exploited vulnerability is not the network layer. It is the user's decisions. Custom entropy does not remove the human from the security equation. It moves the human directly into the cryptographic path.

This is counterintuitive to the 'user empowerment' narrative. More control is not automatically better. More control is more responsibility. In the case of entropy, the responsibility comes at the exact moment of key creation. If the user makes a mistake in that moment, the mistake is permanent. There is no patch. There is no recovery. The funds are lost or stolen.

Psychologically, people prefer action to inaction. A user who is told that they can improve their wallet security by swiping or typing will feel that they have done something. This feeling reduces vigilance. The user may skip the more important steps: checking the wallet's PGP signature, using a dedicated device, verifying the address. The feature, by creating a sense of participation, actually mutes the user's security alarm. This is a well-known phenomenon in safety research. Adding one layer of safety can reduce attention to other layers.

The most common user behavior will be to tap the screen a few times, feel a sense of participation, and assume the wallet is now more secure. That behavior is exactly backward. The system RNG is a professionally designed cryptographic component. The user's thumb is not. A thirty-second swipe pattern is not 128 bits of entropy. It is maybe 10 to 20 bits. If the mixing function combines the system entropy with this weak input, the total entropy is not the sum. The total entropy is the maximum of the two, not the maximum plus the minimum. The system RNG was already providing the strongest source. The user's weak input adds little or nothing.

There is a scenario where the user's input actually harms security. If the user relies on the custom entropy to save them from a compromised system RNG, and the custom entropy is weak, they are no better off. But they are more overconfident. The false sense of security is a real liability. It is the same pattern I saw in 2020 when DeFi traders rushed into yield farms without reading the contracts. The marketing said 'audited.' The code said something else. The result was predictable.

The solution is not to remove the feature. The solution is to make the feature honest. The wallet should display an entropy meter. It should tell the user how many bits their input is actually adding. It should refuse to proceed if the user's input is below a threshold. It should warn that a swipe is not enough. It should point to an offline dice-based guide. Without these elements, the feature is security theater.

The honest release note would say: 'We added an option to inject additional entropy during key generation. This feature only helps if you use a high-quality source such as dice. It does not protect your key after generation. It does not make the phone a hardware wallet. It will not reduce your need for a cold storage device. Use it only if you understand what you are doing.' That release note would have been accurate. The actual release note was shorter.

Hardware Wallets Are a Different Species

Let me be blunt. A hardware wallet is not a software wallet with a screen. It is a separate computer. Its security boundary is physical. The private key is stored in a secure element designed to resist extraction. The signing operation happens inside that secure element. The transaction is constructed on a computer, but the signature is produced by the secure chip. To steal a key from a hardware wallet, an attacker must be physically present or must have compromised the device at an extremely deep level. That is a different risk profile.

A mobile wallet, even with custom entropy, has its private key in the memory of a phone that runs a general-purpose operating system. The phone downloads apps, connects to untrusted networks, and processes untrusted data. If the phone is compromised, the key is not safe. The entropy at generation time is irrelevant. The key is already in the environment where the attacker can read it.

To claim that custom entropy could reduce the need for hardware wallets is like claiming that a better padlock on a cardboard box reduces the need for a bank vault. The padlock might be strong. The box is not. The security model of a hardware wallet is not 'more randomness.' It is 'isolation of keys from the internet.' No amount of randomness changes the storage environment.

This is not an argument that hardware wallets are perfect. They have risks. The Ledger customer database leak in 2020 was a serious breach. The Ledger Recover feature announced in 2023 caused widespread concern because it raised the question of whether a secret could be extracted from the device. A hardware wallet must be purchased from a trustworthy source. Its supply chain must be verified. These are real concerns. But the answer to a flawed hardware wallet is not a mobile wallet with a swipe gesture. The answer is a better hardware wallet, or an air-gapped signer, or a multi-signature setup.

The market should not treat the custom entropy narrative as a substitute for institutional-grade custody. It should treat it as a minor feature that helps a narrow segment of advanced users improve their key generation process.

The BIP39 Passphrase and the Confusion Trap

Another common confusion is between the BIP39 optional passphrase and the custom entropy feature. The passphrase is the so-called 25th word. It is appended to the mnemonic when the seed is derived. The passphrase changes the seed without changing the mnemonic. If the mnemonic is stolen, the passphrase protects the funds. But the passphrase does not add entropy to the key in the mathematical sense. It adds a simple password to the derivation. A user who types a short passphrase is not improving the randomness of the underlying key generation. They are adding a layer of security, yes, but a weak one.

Custom entropy is different. It affects the mnemonic itself. The user's input is mixed into the entropy that maps directly to the word list. This is a more fundamental change. It is also more dangerous if done wrong. The two features are often confused because both involve user input during seed setup. The difference is important. One is a password lock on the front door. The other is an ingredient in the key's recipe.

Users should understand this distinction. If a wallet uses custom entropy, the seed phrase is a product of both the system RNG and the user's input. If the user ever needs to restore the wallet from the mnemonic, they do not need to remember the custom entropy, because the mnemonic contains the output. The custom entropy is only relevant at the moment of generation. It is not a passphrase for recovery. Some users might assume that the custom input is required for recovery. That assumption would be wrong and could lead to confusion during a stress event.

The Coldcard Precedent

Advanced users will recognize this feature from the hardware wallet world. The Coldcard, a Bitcoin-focused hardware wallet, has offered manual entropy input for years. Users can roll dice and enter the numbers into the device. The device combines the dice rolls with its internal entropy. The combined result is the seed. The Coldcard's approach is rigorous. It shows the user how many bits each roll adds. It requires a minimum threshold. It makes entropy a first-class part of the user interface.

That is the standard that mobile wallets should follow. BlueWallet does not have to invent the concept. It has to copy the discipline. The fact that this feature is only now appearing in a major mobile wallet says more about the state of the mobile wallet industry than about the novelty of the idea. The right response is not to celebrate the feature. The right response is to ask why it took so long to meet a standard that has existed in the cold storage community for years.

The Multi-Sig Alternative

If a user's actual concern is avoiding a single point of failure, custom entropy is not the best tool. Multi-sig is. A multi-sig setup requires two or more independent keys to spend funds. That design spreads the risk across multiple devices and multiple environments. If one phone is compromised, the attacker still needs the other key. Custom entropy does not provide that resilience. It only changes the seed generation on one device.

The safest self-custody model for meaningful value is not 'a phone with a strong seed.' It is 'two independent devices, each with its own seed, signing through a multi-sig scheme.' BlueWallet supports some multi-sig capacities, but the conversation around custom entropy has a tendency to move away from this complexity. The feature feeds the desire for a magic bullet. There is no magic bullet. The math is the same: more independent factors, more security. User-generated entropy on a single device is not an independent factor in a meaningful sense, because the device still holds the key.

Audit, Incentive, and Open Source

The open-source status of BlueWallet is a positive signal. A non-custodial wallet with no token has no incentive to maximize user risk. The project relies on donations and community trust. That is a better setup for user safety than a for-profit wallet that monetizes analytics. But open source is not a stamp of formal verification.

The key generation code is the most critical path in the entire application. A community review is valuable, but it is not the same as a dedicated third-party audit. The release notes do not mention a formal audit for the custom entropy implementation. That omission matters. I would not put a large portfolio into a feature that has not been specifically audited by a firm with a track record in cryptographic key management.

The project has no token, which is an advantage in one dimension and a weakness in another. Without a token, there is no market panic, no governance attack surface, no incentive to inflate the value of a token. But there is also no funding mechanism for a serious security audit. The project relies on donations. Donations do not pay for formal verification or commercial audits. This is a structural weakness of all non-commercial open-source wallets. The user must carry the verification burden.

Hash the truth, verify the story. That phrase is not a slogan. It is the only practical defense. The user should verify that the wallet's code has been reviewed. The user should verify the entropy mixing method. The user should verify that the seed phrase is generated offline, if possible. Otherwise, the 'custom entropy' feature is just a feature in a story.

Market Silence and Narrative Risk

The market showed no reaction to this release. Bitcoin did not move. There is no BlueWallet token. The hardware wallet companies did not issue statements. The absence of a market reaction is actually the correct market verdict. This is an infrastructure update with a narrow user impact. It belongs in the category of small, positive, incremental changes that define the slow maturation of the self-custody ecosystem.

But the narrative is not harmless. Financial media tends to amplify features into trends. A headline suggesting that custom entropy could reduce hardware wallet dependence will be read by people who do not understand the technical distinction. For a user who uses a hardware wallet because they are afraid of exchange hacks, this feature might seem like an alternative. That is a dangerous perception. The user might move funds from a hardware wallet to a software wallet because they believe the feature makes them safe. The belief is false.

This is where the trader should pay attention. The market prices perception, not just code. If the perception of software wallet safety increases, the demand for hardware wallets might soften slightly. That is a weak, long-tail effect. It will not show up immediately. But it can show up in user surveys and in the product roadmap of wallet vendors. Watch the narrative, not the ticker. Front-run the narrative, not just the chain.

The core insight that no release note will print is this: Custom entropy is a defense-in-depth measure, not a replacement for hardware isolation. The two problems are different. Entropy is about the quality of the secret at birth. Isolation is about the protection of the secret for its entire life.

The phrase 'reduce reliance on hardware wallets' is therefore a category error. You cannot reduce the need for isolation by improving the quality of a random number. The need for isolation is independent of the entropy source. Even if the entropy is perfect, the key still needs to be stored somewhere. If that somewhere is a networked phone, the key is at risk.

Structural Blind Spots

There is a deeper irony here. The Bitcoin network was designed to remove trust from the system. The consensus mechanism distributes authority across miners. But after the fourth halving, the reality is that hash power has consolidated into a small number of mining pools. The network's consensus is not as distributed as the original design intended. The idea of decentralization has become a story that hides the concentration of power.

The same pattern repeats in the wallet layer. The industry asks the individual user to be their own bank. It tells the user to hold their own keys. It adds tools like custom entropy to give the user more control. And yet the user is the least capable participant in the entire system. The user has no cryptographer on call. The user has no secure hardware audit. The user has no threat model beyond a vague sense that 'it is better than an exchange.'

The feature is a burden, not a gift. It shifts the responsibility for randomness generation from a professionally designed RNG to a human being. The human being is not a professional random number generator. The human being is a pattern-making machine. That is the opposite of what entropy requires.

The Regulatory Shadow

The political layer complicates this further. The Tornado Cash sanctions established a precedent that writing code can be criminal. That precedent does not limit itself to mixers. It applies to any code that enhances user autonomy. A wallet feature that gives users more control over their keys is, in the eyes of a regulator, another tool for resisting surveillance. Custom entropy is not a privacy feature on its face. But it is part of the broader self-custody toolkit that regulators have started to inspect.

How does custom entropy fit into this? The feature is not a mixer. It does not hide the identity of a transaction. But it does give users more control over the key. In the mind of a regulator, more control for the user means less visibility for the state. That is not a neutral fact. It is a threat indicator. A wallet that proudly advertises custom entropy is a wallet that is building tools for user defense. The same tools can be used by people who want to evade sanctions.

I am not saying that BlueWallet is a target. I am saying that the legal category 'self-custody software' is no longer safe. The Tornado Cash precedent has made every developer a potential defendant. The best insurance is documentation, open source review, and a clear statement that the feature is not intended to obstruct law enforcement. But intent is not enough. The code is the crime scene.

The FinCEN proposed rule for unhosted wallets sought to require reporting for transactions involving self-custody addresses. It did not become final, but the direction is obvious. The European MiCA framework also includes provisions that can be interpreted to cover non-custodial wallet software. The legal environment for open-source wallet developers is deteriorating. Silence is the safest ledger.

For an individual, the safest behavior is to leak as little information as possible. For a developer, the safest behavior is to make the code transparent. But transparency does not guarantee legal safety in the current environment. The open-source community is no longer a safe harbor. The same code that protects user funds can be framed as an obstacle to law enforcement. That framing is a feature of the Tornado Cash precedent, not a bug.

The Contrarian Read

The common view is that more user control means more security. The contrarian view is that more user control means more user error, and user error is the most exploitable vulnerability in the entire system. Most users are not capable of generating 256 bits of entropy from their own actions. The system RNG is almost certainly stronger than a swipe, a tap, or a typed note. For the average user, adding custom entropy can actually lower security by creating a false sense of mastery over randomness. The feature is a net improvement only for the disciplined minority who use physical random sources like dice.

That statement is the one most likely to be missed in the coverage. The release note does not say it. The mainstream articles about the feature will not say it. It is the gap between the feature and its use. The gap is where losses happen.

The user who benefits most from custom entropy is also the user who already practices good security hygiene. That user has a hardware wallet. That user verifies signatures. That user knows what to do when a feature appears. The average user, by contrast, will tap the screen and go back to scrolling. The feature does not make that user safer. It makes that user more complacent.

There is a historical precedent for this. Every time the crypto industry has tried to make cryptography more user-friendly, it has introduced a new class of user misunderstanding. The password manager that hides the private key. The smart contract that 'owns' the user. The hardware wallet that is a hot wallet because the user enters the seed on a keyboard. The failure is never in the math. The failure is in the translation from mathematical security to human behavior.

The contrarian truth is uncomfortable: the feature exists because a segment of advanced users wants to guard against a compromised system RNG. For that segment, the feature is valuable, if they use physical dice, if they use a dedicated offline device, if they understand the mixing process. For the majority, the feature is not valuable. It is confusing. The entropy meter is the missing piece. Without it, the feature is a self-congratulatory checkbox.

The Forward Signal

So where does this leave the user, the developer, and the trader?

The user should treat custom entropy as an advanced feature. If they choose to use it, they should use a genuinely random source such as dice rolls. They should understand that the phone is still not a safe place to store a large amount of Bitcoin. They should keep using a hardware wallet for long-term storage. They should not let a swipe gesture replace a Coldcard.

The developer should audit the mixing function. They should quantify how much entropy the user input actually adds. They should display an entropy estimate and warn the user when the input is weak. The security of this feature depends on these details. Without an entropy meter, the feature is theater.

The trader should note that this release is not a price event. It is a narrative event. Watch how the press frame the 'hardware wallet replacement' story. If the story gains traction, expect an increase in security misinformation. That misinformation is a contrarian signal. When the market believes software wallets are as safe as hardware wallets, the risk is not priced. It is not priced until the first high-profile theft from a software wallet that was abandoned by a user because of that belief.

The next signal to watch is whether BlueWallet adds a security warning and an entropy estimator. That would show that the team understands the real risk. If they treat this feature as a checkbox, the user education burden falls on the community. The community is not prepared. The user is not prepared. The block does not care. The block only cares whether the key is random.

The block confirms what the eyes missed. The eyes saw a secure feature. The block saw a shift of responsibility from a machine to a human. The human is the most valuable asset in the security model and the most fragile.

The next time you see a wallet feature that promises to replace hardware, remember the integer overflow. Remember the project that nearly lost $2.4 million because a function looked safe. Remember that the market does not reward good intentions. It rewards verified execution.

Verify the entropy. Verify the isolation. Verify the code. Then decide.

Entropy claims its due in every block. Weak entropy will eventually be found. Strong entropy will not. But strong entropy in a weak storage environment is still a lost key. The ledger does not care about intentions. It only cares about the math. The math says that entropy is necessary but not sufficient. The math says that isolation is a different property. The math says that a human being is the weakest random source in the system.

Hash the truth, verify the story. The story will tell you that your phone is enough. The hash will tell you whether the code was reviewed. Verify the hash. Then verify the story. And then, when the next version arrives, ask the question that should be written in every wallet's readme: who watches the watchmen? In the age of self-custody, the watchmen are the users. The ledger is silent. The future belongs to those who can verify, not just narrate.

Market Prices

BTC Bitcoin
$78,039.9 +0.52%
ETH Ethereum
$2,454.98 +0.86%
SOL Solana
$104.64 +1.25%
BNB BNB Chain
$693.3 +0.83%
XRP XRP Ledger
$1.39 +0.32%
DOGE Dogecoin
$0.0845 +0.11%
ADA Cardano
$0.2004 +0.35%
AVAX Avalanche
$7.32 +0.95%
DOT Polkadot
$0.8430 +0.67%
LINK Chainlink
$11.36 +0.42%

Fear & Greed

69

Greed

Market Sentiment

Event Calendar

{{年份}}
30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

12
05
halving BCH Halving

Block reward halving event

28
03
unlock Arbitrum Token Unlock

92 million ARB released

18
03
unlock Sui Token Unlock

Team and early investor shares released

7x24h Flash News

More >
{{快讯列表(10)}} {{loop}}
{{快讯时间}}

{{快讯内容}}

{{快讯标签}}
{{/loop}} {{/快讯列表}}

Tools

All →

Altseason Index

41

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,039.9
1
Ethereum
ETH
$2,454.98
1
Solana
SOL
$104.64
1
BNB Chain
BNB
$693.3
1
XRP Ledger
XRP
$1.39
1
Dogecoin
DOGE
$0.0845
1
Cardano
ADA
$0.2004
1
Avalanche
AVAX
$7.32
1
Polkadot
DOT
$0.8430
1
Chainlink
LINK
$11.36

🐋 Whale Tracker

🔴
0xa7db...3948
5m ago
Out
2,587,268 USDC
🟢
0xea35...131c
30m ago
In
2,133 ETH
🔵
0x4799...a815
1h ago
Stake
4,392,104 DOGE

💡 Smart Money

0x5405...d9a4
Institutional Custody
+$0.2M
70%
0x64d2...08a7
Top DeFi Miner
+$4.3M
74%
0xb1e8...ec73
Arbitrage Bot
+$0.4M
84%