Hardware Wallet Security After Coldcard: Why One Broken Random Number Generator Changes Self-Custody Forever

The Coldcard attacks have created the most serious crisis of confidence in hardware wallet security since self-custody became a mainstream part of the Bitcoin investment thesis. An attacker did not need to steal a device, bypass a PIN, compromise a computer or break Bitcoin’s cryptography. The private keys were vulnerable from the moment certain wallets were created because the randomness used to generate them was...

The Coldcard attacks have created the most serious crisis of confidence in hardware wallet security since self-custody became a mainstream part of the Bitcoin investment thesis. An attacker did not need to steal a device, bypass a PIN, compromise a computer or break Bitcoin’s cryptography. The private keys were vulnerable from the moment certain wallets were created because the randomness used to generate them was weaker than users believed.

That distinction makes the incident unusually important.

A conventional hardware wallet attack normally targets the device after the wallet exists. The attacker may attempt to extract the private key, manipulate a transaction, replace the device during shipping or trick the owner into revealing the recovery phrase.

The Coldcard entropy flaw operated at a more fundamental level. It affected the birth of the wallet itself.

Coinkite, the manufacturer behind Coldcard, disclosed that a series of firmware bugs prevented the intended hardware random number generator from contributing correctly to seed creation. On affected Mk2 and Mk3 firmware, the company’s preliminary estimate placed the effective search space near 40 bits. Later Mk4, Q and Mk5 models received additional entropy from secure elements, but Coinkite still estimated only approximately 72 bits rather than the intended 128-bit minimum.

The result was not merely a theoretical weakness.

Galaxy Research estimated that 1,596 BTC had been stolen from approximately 7,300 addresses across three confirmed attack waves and 14 smaller incidents. At the prices prevailing when the estimate was published, the confirmed losses exceeded $100 million. Researchers were also examining a possible fourth wave that could push the total toward 2,055 BTC, although that additional group had not yet been included in the confirmed figure.

The incident therefore forces Bitcoin holders to confront an uncomfortable reality: a hardware wallet can remain offline, protect its PIN, correctly display addresses and sign valid Bitcoin transactions while still being fundamentally insecure.

This does not mean that all hardware wallets have suddenly become unsafe. It means that hardware wallet security cannot be evaluated through a single feature such as air-gapped signing, a secure element, open-source firmware or a long operating history.

Security depends on the entire system.

The relevant question is no longer simply which device should hold a private key. The real question is which architecture can survive a failure in one device, one entropy source, one firmware path, one manufacturer or one human procedure without losing the entire Bitcoin balance.

The Coldcard Attack Did Not Break Bitcoin

The first point must remain clear: the Coldcard entropy flaw did not break the Bitcoin network, the SHA-256 hashing algorithm or the elliptic-curve cryptography used to sign transactions.

Bitcoin continued operating normally.

The vulnerability existed inside the process used by certain Coldcard firmware versions to generate wallet seeds. Every Bitcoin wallet begins with a secret random value. The wallet derives the recovery words, master private key, child keys and addresses from that starting value.

If the original value is sufficiently unpredictable, guessing the resulting private keys is computationally unrealistic. If it is generated from a much smaller or partially predictable set of possibilities, an attacker can search that reduced space.

The Bitcoin protocol cannot distinguish between a key generated from excellent randomness and a key generated from weak randomness. Both produce mathematically valid addresses and signatures.

The network only verifies whether the spender possesses the correct private key.

This explains why the attack did not require a malicious transaction, a consensus failure or a physical interaction with the victim’s Coldcard. Once the attacker reproduced the weak seed, the attacker possessed the same signing authority as the legitimate owner.

From Bitcoin’s perspective, the thefts were valid transactions signed by valid keys.

This is one of the hardest lessons in hardware wallet security. Bitcoin eliminates the need for a bank to authorize ownership, but it also removes the institution that might reverse a fraudulent transfer.

Self-custody gives the owner final authority.

A compromised private key gives the attacker exactly the same authority.

What Entropy Actually Means

Entropy is a measure of unpredictability. In the context of a Bitcoin wallet, it describes how difficult it is for an attacker to identify the original random value used to generate the wallet.

BIP-39, the widely used standard behind 12-word and 24-word recovery phrases, begins with computer-generated entropy. A 12-word BIP-39 phrase normally represents 128 bits of initial entropy plus a checksum, while a 24-word phrase normally represents 256 bits plus a checksum. The specification explicitly describes mnemonic words as a human-readable representation of computer-generated randomness, not as a method for turning a sentence invented by a user into a secure wallet.

The difference between 128 bits and 40 bits is not incremental.

A 128-bit search space contains approximately 340 undecillion possible values. Expressed numerically, that is around 3.4 × 10³⁸ combinations.

A 40-bit search space contains approximately 1.1 trillion possibilities.

A trillion possibilities may sound large in ordinary life. In cryptographic terms, it is catastrophically small when an attacker can use optimized software, parallel processors, cloud computing and knowledge about how the weak generator was seeded.

The later Coldcard models were estimated to provide approximately 72 bits of effective entropy. That is far stronger than 40 bits, but it is still dramatically below the expected 128-bit target. A 72-bit space contains around 4.7 × 10²¹ possibilities.

Whether that can be searched economically depends on the attacker’s knowledge, the distribution of the entropy, implementation details and the value held in the target wallet.

The crucial point is that the number of recovery words shown on the screen does not prove that the wallet contained the expected amount of randomness.

A device can display 24 words while those words ultimately came from a much smaller effective search space.

The length of the backup does not repair weakness in the generator.

How the Coldcard Entropy Flaw Entered the Firmware

According to Coinkite’s technical explanation, the problem originated during a 2021 migration of Coldcard’s elliptic-curve operations to Bitcoin Core’s widely trusted libsecp256k1 library.

Using libsecp256k1 was not itself the mistake. The integration surrounding the migration was.

Coldcard seed generation moved from the intended ckcc.rng_bytes() path to ngu.random.bytes(). That function ultimately resolved to a MicroPython software fallback rather than the Coldcard hardware random number generator.

The two implementations used the same function signature. The correct hardware RNG code remained present in the firmware binary, but the wallet-creation path was not actually reaching it.

Coinkite also disclosed that a configuration setting had disabled the STM32 hardware RNG path. Because the software fallback exposed the expected interface, the build completed without clearly identifying that the wrong generator had been selected.

This is the most important technical lesson from the incident.

The failure did not occur because Coldcard lacked a hardware random number generator. It occurred because the production seed-generation path silently used something else.

A security component can exist inside a device, pass its own tests and be present in the firmware while still failing to protect the operation for which users rely on it.

This is why component-level claims are not sufficient for evaluating hardware wallet security.

It is not enough to ask whether a device contains a secure element or a certified random number generator. The evaluation must confirm that the exact production firmware, on the exact hardware revision, actually calls the intended component during seed generation.

The entire path must be tested from the physical entropy source to the final recovery phrase.

Why the Output Still Looked Random

Weak random number generation is exceptionally difficult for ordinary users to detect because compromised output does not need to look repetitive.

The recovery phrase may contain apparently unrelated words. The addresses may look normal. The device can generate different wallets each time. Standard wallet software can restore the seed without any warning.

The weakness exists in the distribution of possible outputs, not necessarily in the appearance of one output.

Imagine a machine that selects one number from a trillion possibilities and then converts that number into a 24-word phrase. Every individual phrase may look random to a human observer.

The attacker’s advantage is not that the words look suspicious. It is that the attacker knows the real wallet could only have come from a restricted set.

Ledger emphasized this problem in its analysis of the incident, noting that defective randomness can still look normal and pass casual output inspection. Ledger argues that entropy generation should be treated as a dedicated security function, supported by physical noise sources, health monitoring and external certification rather than as an ordinary software utility.

Statistical output tests alone are not always enough.

A random number generator must be evaluated according to where its entropy comes from, how much min-entropy the source provides, how the output is conditioned and whether the system detects degradation or failure.

The U.S. National Institute of Standards and Technology addresses this through SP 800-90B, which defines design and validation requirements for entropy sources used in random-bit generation. The standard focuses on the underlying noise source, health testing and estimation of min-entropy rather than simply asking whether a sample looks random.

For the user, however, none of this is visible during setup.

The screen shows recovery words.

The entire trust decision has already happened underneath.

Which Coldcard Devices and Firmware Versions Were Affected?

Coinkite’s August 1 advisory expanded the affected scope across several generations and release tracks.

For Mk2 and Mk3 devices, seeds generated on firmware versions 4.0.1 through 4.1.9 are considered at risk unless the user added at least 50 independent, fair and private dice rolls during the original seed-generation process or protected the resulting wallet with a genuinely strong and unique BIP-39 passphrase.

Mk4 and Mk5 devices are affected when the seed was created before standard firmware 5.6.0 or Edge firmware 6.6.0X.

Coldcard Q devices are affected when the seed was created before standard firmware 1.5.0Q or Edge firmware 6.6.0QX.

Mk2 and Mk3 users should install version 4.2.0 or later before creating a replacement seed. Coinkite has stressed that standard and Edge firmware are separate release tracks, so users should not assume that an older Edge release is secure merely because its version number appears higher than a standard release.

TAPSIGNER, OPENDIME and SATSCARD were not affected because they use different codebases.

The most important operational fact is that installing fixed firmware does not repair a seed created under affected firmware.

The vulnerability belongs to the seed.

Once weak entropy has generated the recovery phrase, the resulting private-key hierarchy remains exposed regardless of where the phrase is later imported.

Restoring the same words on a new Coldcard, Ledger, Trezor, Foundation Passport or software wallet does not create a new secret. It recreates the same compromised wallet.

Only generating a completely new seed through a secure process and moving the Bitcoin to addresses derived from that new seed resolves the original exposure.

Why Updating the Device Is Not Enough

Firmware updates can correct future behavior. They cannot retroactively add randomness to a seed that already exists.

This is comparable to discovering that a password was generated from a predictable pattern. Installing a better password generator does not strengthen the old password.

The user must create a new one.

Coinkite’s migration instructions require users to install the fixed firmware, generate an entirely new seed, verify the backup and wallet fingerprint, confirm a receive address and perform a small test transaction before transferring the remaining balance.

The old backup should be retained until the migration is fully confirmed, because destroying it too early could create a separate loss if the new wallet was recorded incorrectly.

The migration itself introduces risk.

A frightened user may rush, install firmware from an unofficial website, reveal the recovery phrase to a fraudulent support agent, send the full balance to an unverified address or erase the original device before confirming access to the replacement wallet.

Attackers know that security incidents create urgency and confusion. Phishing campaigns often appear immediately after a major disclosure.

The correct response is urgent but methodical.

The legitimate manufacturer does not need the user’s seed phrase.

No website can “check” whether the recovery words are vulnerable.

No support employee should request them.

The migration should be conducted through verified firmware and addresses confirmed directly on trusted hardware.

The Dice-Roll Exception and Its Limits

Coldcard allows users to add physical dice rolls to wallet generation. Coinkite says the affected firmware hashed the device-generated value together with every dice roll entered by the user.

According to the company, between 50 and 98 fair, independent and private rolls contributed at least 128 bits of entropy. At least 99 rolls contributed approximately 256 bits.

Users who are certain that they entered at least 50 valid private rolls when creating the final seed are not considered at risk from this specific RNG failure alone. Users who entered fewer rolls, cannot remember the number or may have exposed the sequence are advised to migrate.

This exception demonstrates the value of independent entropy, but it should not be misunderstood.

Rolling dice securely is not the same as casually pressing a die several times and typing the results into any website.

The die must be fair enough for the intended process. The rolls must be independent. The complete sequence must remain private. The procedure must be implemented correctly by the wallet.

The user must also avoid recording the dice sequence digitally, photographing it or entering it on an internet-connected computer. The sequence is effectively secret key material.

Manual entropy can reduce dependence on the manufacturer, but it transfers part of the security responsibility to the user.

For many people, a correctly implemented multi-source device generator is safer than a complex manual ceremony performed incorrectly.

The lesson for hardware wallet security is not that everyone should create seeds manually. It is that users holding life-changing amounts of Bitcoin should understand whether their architecture depends entirely on one invisible entropy source.

Does a Passphrase Protect an Affected Seed?

A strong BIP-39 passphrase can provide an independent barrier because it creates a different wallet from the same recovery phrase.

Under BIP-39, the passphrase is included when converting the mnemonic into the binary seed. Every possible passphrase generates a technically valid wallet. Only the exact original passphrase recreates the intended addresses.

If an attacker reconstructs the weak Coldcard recovery phrase but does not know a strong, unique passphrase, the attacker still has another secret to discover.

However, the meaning of “strong” is critical.

A short phrase, quotation, common password, personal reference, reused password or predictable pattern may be vulnerable to dictionary and targeted guessing attacks.

The Coldcard PIN is not a BIP-39 passphrase and does not provide this protection. The PIN controls access to the physical device. It does not alter the private keys derived from the recovery phrase.

Coinkite advises affected passphrase users to migrate even when the passphrase is strong. The passphrase may reduce immediate exposure, but it does not repair the underlying weak seed.

Passphrases also create their own failure mode.

A lost seed phrase can be restored from a backup.

A lost passphrase cannot be reconstructed unless it has been backed up separately. A spelling mistake, capitalization difference or extra space creates another valid but empty wallet, which can cause the user to believe the funds have disappeared.

A passphrase is therefore a powerful tool for hardware wallet security, but it is not a free layer. It increases both attack resistance and operational complexity.

Do the Coldcard Attacks Mean Ledger Is Safe?

Ledger’s architecture takes a different approach to randomness.

Ledger states that its devices generate entropy through a true random number generator embedded inside a certified secure element. The company says the TRNG is evaluated under the German AIS-31 methodology at the PTG.2 level, while its secure elements carry Common Criteria certifications such as EAL5+ or EAL6+ depending on the component. Ledger devices also undergo CSPN evaluation by France’s ANSSI, with random-number-generation quality included in the security targets.

This design reduces the risk of relying on a general-purpose software generator.

The secure element can provide physical entropy, cryptographic post-processing and health monitoring designed to detect abnormal operating conditions.

Ledger’s model also creates a different trust assumption. Important low-level parts of Ledger OS remain closed source because access to secure-element technology is tied to vendor confidentiality requirements.

Users and independent researchers cannot inspect every component directly. They rely more heavily on certification laboratories, Ledger’s internal security team and external assessments.

This does not make Ledger automatically insecure. It means its assurance model is different.

Coldcard emphasized visible source code and Bitcoin-only operation.

Ledger emphasizes certified secure hardware and recurring formal evaluation.

Neither model eliminates all risk.

Closed code can contain undiscovered bugs. Certification can lag behind firmware changes or fail to capture interactions outside the evaluated scope. Supply-chain compromise, malicious updates, transaction-parsing flaws and user deception remain possible.

The Coldcard incident also demonstrates that the presence of secure hardware does not prove that the entire application path is using it correctly.

Ledger argues that its device-level certifications evaluate the relevant security functions more comprehensively. That is a meaningful distinction, but it should still be understood as risk reduction rather than proof of absolute safety.

No manufacturer can credibly guarantee that every future version of every device will remain invulnerable.

Does Trezor’s Multi-Source Entropy Model Solve the Problem?

Trezor attempts to reduce dependence on a single source by combining entropy from multiple components.

According to Trezor, Model One and Model T combine randomness from the host computer or phone with a hardware TRNG inside the STM32 microcontroller.

Trezor Safe 3 and Safe 5 add another source from an Optiga secure element. Trezor Safe 7 adds a fourth source through the TROPIC01 chip.

The combined output is used to create the wallet backup. The intended security property is that one compromised or defective source should not make the final result predictable if at least one independent source remains secure.

Trezor also documents an entropy-check workflow. During wallet creation, the device commits to its internal entropy before the host supplies external entropy.

The host can then request proof, reconstruct test seeds and verify that the device included the external randomness correctly. The workflow is designed to reduce the risk that a malicious device silently substitutes or manipulates the intended entropy.

This architecture directly addresses the single-source problem highlighted by Coldcard.

However, it does not make Trezor immune to every form of attack.

The host software must generate and transmit external entropy correctly. The implementation combining the sources must be sound. The user must install authentic firmware and verify information on the trusted display.

Physical extraction, malicious firmware, transaction substitution and backup compromise remain separate threat categories.

Multi-source entropy is a strong design characteristic for hardware wallet security, but entropy generation is only one stage of the system.

How Foundation Approaches Hardware Wallet Security

Foundation’s current security model emphasizes multiple entropy sources, open development, independent audits and reproducible builds.

Foundation states that Passport Prime combines randomness from an open-source physical avalanche-noise circuit, the processor’s hardware TRNG and the secure element’s random number generator.

The sources are combined so that the wallet should remain unpredictable if one source is defective or compromised. Foundation also publishes security models, open-source repositories, independent audit reports and firmware-verification procedures.

Reproducible builds address another important problem.

Publishing source code does not automatically prove that the firmware installed on a commercial device was compiled from that source. A reproducible-build process allows independent parties to compile the public code and compare the resulting binary with the manufacturer’s release.

When the outputs match, users gain stronger evidence that the distributed firmware corresponds to the visible code.

Reproducibility cannot prove that the code is free from vulnerabilities. The Coldcard bug existed in publicly available code for years.

It does, however, reduce the risk that the manufacturer distributes a hidden binary different from the reviewed source.

Foundation’s model represents one philosophy of hardware wallet security: minimize unverifiable trust by exposing the architecture, source, builds and audit history.

Ledger’s philosophy places more weight on certified tamper-resistant hardware.

Trezor emphasizes open development and combining independent entropy sources.

The Coldcard incident does not establish one universal winner. It shows why users must understand the assumptions behind each model.

Open Source Did Not Prevent the Coldcard Failure

The Coldcard code was available for public inspection, yet the vulnerability remained unnoticed in production seed generation for more than five years.

This does not prove that open-source development is useless.

It proves that code availability and code review are not the same thing.

Thousands of lines of visible firmware can remain effectively unaudited if few qualified researchers examine the exact interaction between submodules, compiler flags, firmware versions and hardware behavior.

The Coldcard flaw involved function resolution and end-to-end call reachability across components. The intended hardware RNG implementation was present in the firmware binary, but reviewers had not verified that seed generation actually reached it.

Open source creates the possibility of independent verification.

It does not guarantee that verification happens.

Closed source creates higher barriers to outside inspection, but professional audits and certification can still find weaknesses.

The relevant question is therefore not simply whether the source is open.

Investors should ask whether the code is actively reviewed, whether builds are reproducible, whether independent researchers are incentivized to report vulnerabilities, whether audits cover production firmware and whether the manufacturer responds constructively to disclosures.

A public repository without sustained scrutiny can create a false sense of transparency.

A certificate without clear scope can create a false sense of institutional assurance.

Effective hardware wallet security needs both verifiability and active verification.

The Missing Standard: Certifying the Entire Seed-Generation Path

The Coldcard incident exposes a gap in current hardware wallet assurance.

A chip may be certified. A secure element may pass a laboratory evaluation. A firmware component may be audited. The final commercial wallet may still use those components incorrectly.

The industry needs an end-to-end standard tied to specific combinations of hardware and firmware.

Such a framework should confirm that the seed-generation function reaches the intended physical entropy source, that every fallback path is cryptographically safe or fails closed, that insufficient entropy produces an explicit error and that production builds match the reviewed source or certified binary.

It should also test firmware upgrades.

A device may be secure at launch and become vulnerable after a later library migration, compiler change or refactoring. Certification attached only to the hardware model can therefore become outdated while users assume it covers the entire current system.

The standard should include continuous health tests, independent entropy-source validation, reproducible or traceable builds, version-specific assessment and mandatory migration procedures for security-critical defects.

The central principle is simple:

A wallet should never silently downgrade from a cryptographic entropy source to a non-cryptographic fallback.

If the intended generator fails, seed creation should stop.

Convenience cannot take priority over the quality of the private key.

Hardware Wallet Security Is Larger Than Entropy

The Coldcard incident has understandably placed randomness at the center of the debate, but a secure seed does not guarantee a secure wallet.

A hardware wallet must also resist or manage several other attack categories.

A malicious device can display one receive address while sending another to the connected computer. Compromised companion software can construct a transaction that pays the wrong destination. A user can sign without carefully verifying the address and amount on the device.

Firmware updates can be replaced or delivered through fraudulent websites. Devices can be modified in the supply chain before reaching the buyer.

Physical attackers may attempt voltage glitches, laser fault injection, memory extraction or invasive access to the secure element.

A recovery phrase can be stolen from paper, photographed by a camera, discovered by a family member or destroyed in a fire.

The owner can also become the failure point by forgetting a passphrase, losing all backups, storing multiple multisig keys together or following fraudulent migration instructions.

Real hardware wallet security is therefore a lifecycle rather than a product.

It begins with purchasing the device from a trustworthy source, verifying packaging and firmware, generating the seed privately, protecting backups, verifying receive addresses, reviewing every transaction and maintaining a tested recovery plan.

The device is only one component.

Air-Gapped Does Not Mean Invulnerable

Coldcard is widely associated with air-gapped workflows using microSD cards or QR-style transaction transfer. These methods reduce direct exposure to internet-connected computers.

They do not protect against a weak key generated inside the device.

An air gap controls communication.

It does not guarantee correct cryptography, authentic firmware or safe transaction interpretation.

A malicious or defective offline device can still generate predictable seeds. It can sign an attacker-controlled transaction introduced through a memory card. It can display misleading information or leak data through files it exports.

Air-gapped operation remains useful because it removes classes of remote attack. It should be evaluated as one layer within hardware wallet security, not as a complete security verdict.

The same principle applies to Bitcoin-only firmware.

Supporting only Bitcoin can reduce code complexity and eliminate attack surface related to other blockchains, smart contracts and token parsers.

It does not automatically protect the remaining Bitcoin code from implementation mistakes.

A smaller attack surface is preferable to an unnecessarily large one.

It is not the same as no attack surface.

Why Single-Signature Wallets Remain a Single Point of Failure

A conventional hardware wallet usually controls a single master seed. Every address in the wallet derives from that root.

If the seed is lost, the owner loses access.

If the seed is stolen, the attacker gains access.

If the seed was generated through defective entropy, the entire wallet is exposed.

A strong device can reduce the probability of these events, but the architecture remains binary. One root of trust either survives or fails.

This is why the Coldcard incident has renewed interest in multisignature custody.

A 2-of-3 multisig wallet requires signatures from two of three independent keys. If one key is compromised through weak entropy, an attacker still lacks the second required signature.

If one device is lost or destroyed, the owner can recover with the remaining two keys.

Multisig is specifically designed to reduce single points of failure, although it introduces greater setup, backup and recovery complexity.

The strongest version uses devices from different manufacturers, generated independently and stored in separate locations.

Vendor diversity matters.

Using three devices of the same model and firmware can reproduce the same implementation risk across all keys. Different vendors reduce the probability that one undiscovered flaw compromises the entire quorum.

However, multisig is not automatically safer in practice.

The user must back up more than the seed phrases. The wallet policy, extended public keys, derivation information and output descriptor must also be recoverable.

Bitcoin Core’s descriptor documentation and BIP-174 PSBT standard support portable workflows across signing devices, but users must preserve the configuration needed to reconstruct the wallet.

A technically excellent multisig setup that cannot be restored is still a failed custody system.

The Case for a 2-of-3 Multivendor Architecture

For substantial long-term Bitcoin holdings, a carefully designed 2-of-3 setup provides a strong balance between redundancy and usability.

Each key can be generated on a different hardware wallet from a different manufacturer. The devices can use different secure elements, firmware stacks and entropy architectures.

The backups can be stored in geographically separate locations. The wallet descriptor can be duplicated without exposing the private keys, because it allows the owner to reconstruct addresses and policy but not spend without the required signatures.

This design changes the consequences of a Coldcard-style failure.

Suppose one key was generated by affected Coldcard firmware. An attacker may reconstruct that key, but the attacker cannot spend from the 2-of-3 wallet without compromising another independent key.

The owner can use the two uncompromised signers to migrate the Bitcoin into a newly created multisig wallet.

The weakness becomes a recoverable incident rather than an immediate total loss.

This is what architecture can achieve that product selection alone cannot.

No user can personally prove that every chip, firmware dependency and compiler output is perfect.

A well-designed quorum accepts that one component may be wrong and prevents that single failure from becoming catastrophic.

For large balances, this is a more realistic interpretation of hardware wallet security than searching for one supposedly flawless device.

When Multisig Can Become More Dangerous

Multisig should not be adopted solely because it sounds more sophisticated.

Complexity can create additional failure points.

Users may store all devices and seed backups in the same location, eliminating geographical redundancy. They may fail to preserve the descriptor or wallet configuration. They may never test recovery.

They may use incompatible derivation standards or forget which passphrase belongs to which key. Family members or heirs may be unable to understand the procedure.

Transaction signing can also become harder. The user must verify the same destination and amount across multiple devices while ensuring that the coordinator software has constructed the correct policy.

A poorly documented multisig setup can protect Bitcoin from attackers while also protecting it from the legitimate owner.

The decision should therefore be proportional to the value being protected, the user’s technical capacity and the availability of professional or trusted assistance.

A simple single-signature wallet may be appropriate for a modest operational balance.

A larger long-term treasury may justify multisig, distributed backups and formal recovery testing.

The objective is not maximum complexity.

It is minimum catastrophic risk.

The Role of Collaborative Custody

Collaborative custody offers another model.

The user may control two keys in a 2-of-3 setup while a specialist provider holds the third. The company cannot move the Bitcoin alone, and the user can still recover without the company if the wallet is designed correctly.

This structure can provide assistance with setup, inheritance, transaction verification and recovery while preserving meaningful self-custody.

It also introduces a new dependency.

The provider may have privacy information, experience regulatory pressure, suffer a data breach or deliver malicious software. The user must verify that the company’s key cannot combine with another party to move funds without consent.

Collaborative custody is therefore neither pure self-reliance nor conventional custodial storage.

It is an attempt to distribute trust.

For some investors, that distribution may be safer than relying entirely on their own technical skill. For others, a fully independent setup is preferable.

The Coldcard incident strengthens the case for architectures where no single manufacturer, institution or user error can independently destroy the position.

What Coldcard Users Should Do Now

Coldcard owners should first determine which device model, firmware release track and version generated the seed currently controlling their Bitcoin.

The relevant question is not simply which firmware is installed today. It is which firmware was running when the original recovery phrase was created.

Users whose seeds fall within the affected range should follow Coinkite’s official advisory and migration procedure unless they are certain that the dice-roll exception applies.

The operational sequence is:

  1. Obtain the fixed firmware through the official Coldcard source and verify it.
  2. Install the correct release for the exact model and release track.
  3. Generate a completely new seed after the update.
  4. Record the new backup privately and verify it.
  5. Confirm the wallet fingerprint and a receiving address directly on the device.
  6. Send a small test transaction from the affected wallet.
  7. Restore or reopen the new wallet and confirm that the test funds arrived.
  8. Transfer the remaining Bitcoin only after the test succeeds.
  9. Retain the old backup until the complete balance is confirmed in the new wallet.
  10. Stop using addresses derived from the affected seed.

These steps are consistent with Coinkite’s published guidance. Updating alone is insufficient, and importing the old phrase into another device does not resolve the risk.

Users should not enter the old or new recovery phrase into an online “checker,” browser extension, chat service or support form.

The migration should be treated as a high-value financial operation.

What Owners of Other Hardware Wallets Should Do

Owners of Ledger, Trezor, Foundation and other hardware wallets do not need to panic solely because Coldcard experienced an entropy failure.

They should use the event to audit their own hardware wallet security assumptions.

The first question is when and how the current seed was generated.

A seed created on a general-purpose computer, website, phone application or manually selected word list may carry more risk than a seed generated inside a trusted hardware device.

The second question is whether the device uses one entropy source or combines multiple independent sources.

The third question is whether the firmware is open, reproducible, audited or formally certified. No single answer is perfect, but users should understand which assurance mechanism they are relying on.

The fourth question is whether the wallet has a passphrase and whether that passphrase is genuinely strong, independently backed up and recoverable by the intended owner or heirs.

The fifth question is whether the balance justifies moving from a single-signature setup to a multivendor multisig architecture.

The sixth question is whether recovery has ever been tested.

A recovery test does not require exposing the seed to a computer. Most reputable hardware wallets support a dry-run backup check that confirms the recorded words without replacing the active wallet.

The seventh question is whether receive addresses and transaction details are verified on the hardware display rather than trusted solely from the connected application.

The eighth question is whether firmware announcements are followed and updates are obtained through verified channels.

These practices cannot eliminate every vulnerability.

They significantly reduce the probability that one hidden defect becomes an irreversible loss.

Why Exchanges Are Not the Automatic Solution

A crisis in self-custody can produce the opposite overreaction: moving all Bitcoin back to an exchange.

That replaces hardware wallet risk with custodial counterparty risk.

The user no longer depends on local seed generation, but now depends on the exchange’s solvency, cybersecurity, internal controls, withdrawal policy, legal jurisdiction and operational integrity.

The failures of centralized crypto institutions have already demonstrated that an account balance is not equivalent to direct control over Bitcoin.

The correct conclusion is not that self-custody has failed.

It is that self-custody is an engineering and operational discipline rather than a one-time purchase.

The same principle appears in decentralized finance. Block2Learn’s analysis of the Summer.fi exploit showed how a simple interface can conceal multiple dependencies and hidden failure modes.

A hardware wallet can create a similar abstraction.

The device may appear to reduce security to writing down twelve words. Beneath that experience lies a complex chain of hardware, firmware, cryptography, manufacturing, updates, backups and human decisions.

Simplicity at the interface does not eliminate complexity underneath.

The Industry’s AI Problem

Coinkite has suggested that an attacker may have used artificial intelligence to review historical firmware and discover the weakness, although this has not been proven.

The company also stated that its own recent AI-assisted security review failed to identify the bug.

Whether AI directly found this specific vulnerability is less important than the broader trend.

Modern models can inspect large codebases, trace dependencies, compare historical versions and accelerate exploit development.

The cost of searching public firmware for subtle implementation mistakes is falling.

Defenders have access to the same tools, but attackers only need to find one profitable weakness. Manufacturers must protect every critical path across every supported release.

This asymmetry means that public code will face increasingly automated scrutiny.

The correct response is not to abandon open-source development.

It is to strengthen continuous testing, formal verification, bug bounties, reproducible builds, fuzzing, static analysis and adversarial review.

AI should be integrated into the defensive process without being treated as a substitute for experienced security researchers.

The Coldcard flaw survived both human review and at least one AI review.

Security requires overlapping methods.

Why Bug Bounties and Disclosure Culture Matter

A strong product is not defined by never having a vulnerability. Every complex system can fail.

The quality of the security culture becomes visible in how the manufacturer invites research, handles reports, communicates scope and supports affected users.

Researchers need a clear private disclosure channel, predictable response process and meaningful financial incentives.

Manufacturers need the ability to investigate responsibly before technical details create an exploitation guide.

Users need timely information once the risk becomes active.

Foundation publicly documents its responsible-disclosure process, audit history, source repositories and firmware-verification resources. Ledger operates the Donjon security team and a bounty program. Trezor publishes firmware and technical workflows openly.

These mechanisms do not guarantee safety. They increase the probability that vulnerabilities are discovered by defenders before attackers can monetize them.

After the Coldcard attacks, hardware wallet security should be evaluated partly through the manufacturer’s institutional behavior.

A technically impressive device backed by a weak disclosure culture can create long periods of hidden risk.

The Block2Learn View: All Hardware Wallets Are Fallible, but They Are Not Equally Insecure

The correct answer to the central question is no.

The Coldcard attacks do not prove that every Ledger, Trezor, Foundation or other hardware wallet is currently insecure.

They prove that every hardware wallet is fallible.

That is a very different conclusion.

The Coldcard entropy flaw was specific to a production firmware path and its interaction with particular software components. Ledger, Trezor and Foundation use different hardware, firmware and entropy architectures.

They are not automatically exposed to the same defect.

However, each product has its own assumptions and potential failure modes. Ledger asks users to rely more heavily on certified secure hardware and closed low-level code. Trezor relies on open firmware and combinations of entropy from the host and multiple components. Foundation emphasizes independent entropy sources, open development and reproducible builds.

Coldcard itself remains a feature-rich Bitcoin signer after the corrected firmware. The incident does not erase every security property of the device.

It does eliminate the argument that reputation, air gaps, Bitcoin-only firmware or public source code can substitute for end-to-end verification.

No investor should concentrate life-changing wealth behind one device simply because the product is widely respected.

The correct target is not perfect hardware wallet security.

Perfect security does not exist.

The target is an architecture in which one plausible failure does not destroy the entire position.

For smaller holdings, this may mean a reputable hardware wallet, a tested physical backup, careful address verification and disciplined firmware management.

For larger holdings, it may mean independent entropy, a strong passphrase or a properly documented multivendor multisig setup.

For family wealth or institutional treasuries, it may require geographic separation, collaborative custody, inheritance planning and formal transaction procedures.

The amount of security architecture should rise with the economic consequence of failure.

The Coldcard Incident Changes the Meaning of “Trustless”

Bitcoin is often described as trustless, but self-custody does not eliminate every form of trust.

It changes where trust is placed.

The owner does not need to trust a bank to honor a balance. The owner must trust or verify the wallet architecture, the firmware, the entropy process, the backup procedure and personal operational discipline.

A single-signature hardware wallet concentrates those assumptions into one root secret.

The Coldcard incident demonstrates what happens when one invisible layer fails.

The future of hardware wallet security will therefore move toward systems that expose assumptions and distribute risk.

Multiple entropy sources are better than one silent dependency.

Version-specific certification is better than a generic hardware claim.

Reproducible builds are better than source publication alone.

Independent audits are better than vendor confidence.

Multivendor multisig is stronger than placing an entire treasury behind one device.

Tested recovery is stronger than assuming a backup works.

The principle is not that every user must become a cryptographer.

The principle is that users should stop treating a hardware wallet as a magical object that transforms any seed into guaranteed security.

A hardware wallet is a signing computer with a specific threat model.

It can reduce risk dramatically.

It cannot remove the need to understand where catastrophic failure can still occur.

Learning Path: From Owning Bitcoin to Securing Bitcoin

Buying Bitcoin and securing Bitcoin are different skills.

Market analysis helps an investor decide whether Bitcoin deserves capital. Custody architecture determines whether the investor can retain control of that capital through device failure, theft, software defects, inheritance and personal error.

The Block2Learn Learning Path develops this distinction through a structured understanding of Bitcoin, financial systems, risk management and long-term capital strategy.

The first stage is learning what ownership means in a bearer-asset system. A Bitcoin balance is controlled by keys, not by a name attached to an account.

The second stage is understanding the hierarchy from entropy to seed phrase, master key, derived addresses and transaction signatures.

The third stage is threat modeling. Investors must distinguish remote attacks, physical attacks, supply-chain attacks, firmware failures, backup exposure and human error.

The fourth stage is matching custody complexity to portfolio value. A small operational balance and a long-term family treasury should not necessarily use the same architecture.

The fifth stage is building recovery and continuity. Security is incomplete when the owner is the only person capable of accessing the wealth and no documented inheritance process exists.

The Coldcard attack is therefore more than a hardware-wallet story.

It is a lesson about the difference between possessing a device and operating a custody system.

Bitcoin removes the central authority that can freeze, reverse or restore ownership.

That sovereignty is valuable precisely because it is final.

The same finality makes weak entropy, poor backups and single points of failure unforgiving.

The strongest response to the Coldcard crisis is not abandoning self-custody.

It is building self-custody that expects individual components to fail and remains secure when they do.

FREE START + 15% DISCOUNT

Start Free Today. Unlock Your 15% Member Discount.

Access the Free Start program immediately and receive an exclusive 15% discount for your first Learning Path purchase.

Build your foundation before making your next investment decision.

GET FREE ACCESS

OASIS

Investor and entrepreneur with a focus on jewelry, e-commerce, and blockchain technologies. Founder of Block2Learn, a platform dedicated to educating on crypto, NFTs, and decentralized finance. Passionate about empowering others through innovative investments in digital assets and traditional industries.

Related Posts

Crypto Trading Volume Decline: Why the $15B Liquidity Drought Is a Warning, Not a Bear Market Verdict

The latest crypto trading volume decline has reopened a question that repeatedly appears whenever digital asset markets enter a quieter phase: is the market merely pausing, or is it beginning another structural bear…

Continue reading

Leave a Reply

You Missed

Hardware Wallet Security After Coldcard: Why One Broken Random Number Generator Changes Self-Custody Forever

  • August 6, 2026
Hardware Wallet Security After Coldcard: Why One Broken Random Number Generator Changes Self-Custody Forever

AI Credit Bubble: How the Data Center Debt Machine Could Reshape Bitcoin’s Next Cycle

  • August 6, 2026
AI Credit Bubble: How the Data Center Debt Machine Could Reshape Bitcoin’s Next Cycle

Bitcoin Weekly Technical Analysis: BTC Tests the $65,000 Pivot While the S&P 500 Reaches Record Highs

  • August 5, 2026
Bitcoin Weekly Technical Analysis: BTC Tests the $65,000 Pivot While the S&P 500 Reaches Record Highs

Crypto Trading Volume Decline: Why the $15B Liquidity Drought Is a Warning, Not a Bear Market Verdict

  • August 5, 2026
Crypto Trading Volume Decline: Why the $15B Liquidity Drought Is a Warning, Not a Bear Market Verdict

CLARITY Act Senate Vote: Why the Ethics Deadlock Now Threatens U.S. Crypto Regulation

  • August 5, 2026
CLARITY Act Senate Vote: Why the Ethics Deadlock Now Threatens U.S. Crypto Regulation

Fed Rate Hike 2026: The Market Is Already Tightening Before September

  • August 5, 2026
Fed Rate Hike 2026: The Market Is Already Tightening Before September

The Record-High Paradox: Why the U.S. Stock Market Is Rising Through Inflation, War and the AI Repricing

  • August 4, 2026
The Record-High Paradox: Why the U.S. Stock Market Is Rising Through Inflation, War and the AI Repricing

KOSPI Crash Exposes Korea’s AI Leverage Trap: How $2 Trillion Vanished Without an Earnings Collapse

  • August 4, 2026
KOSPI Crash Exposes Korea’s AI Leverage Trap: How $2 Trillion Vanished Without an Earnings Collapse
bitcoin
Bitcoin (BTC) $ 64,748.00 1.05%
ethereum
Ethereum (ETH) $ 1,908.19 2.18%
xrp
XRP (XRP) $ 1.05 1.57%
tether
Tether (USDT) $ 0.998784 0.03%
solana
Solana (SOL) $ 73.81 0.01%
bnb
BNB (BNB) $ 594.67 0.75%
usd-coin
USDC (USDC) $ 0.999788 0.00%
dogecoin
Dogecoin (DOGE) $ 0.069748 0.03%
cardano
Cardano (ADA) $ 0.188617 2.30%
staked-ether
Lido Staked Ether (STETH) $ 2,265.05 3.46%
tron
TRON (TRX) $ 0.326898 0.01%
chainlink
Chainlink (LINK) $ 8.18 0.22%
avalanche-2
Avalanche (AVAX) $ 6.68 0.20%
stellar
Stellar (XLM) $ 0.161755 2.94%
the-open-network
Gram (prev. Toncoin) (GRAM) $ 1.39 0.66%
hedera-hashgraph
Hedera (HBAR) $ 0.068474 0.82%
sui
Sui (SUI) $ 0.685093 0.84%
shiba-inu
Shiba Inu (SHIB) $ 0.000005 1.05%
leo-token
LEO Token (LEO) $ 9.74 0.02%
polkadot
Polkadot (DOT) $ 0.83453 2.24%
litecoin
Litecoin (LTC) $ 45.00 0.38%
bitget-token
Bitget Token (BGB) $ 1.62 0.11%
bitcoin-cash
Bitcoin Cash (BCH) $ 214.30 1.88%
hyperliquid
Hyperliquid (HYPE) $ 55.97 1.81%
uniswap
Uniswap (UNI) $ 4.02 1.55%
usds
USDS (USDS) $ 0.999753 0.00%
wrapped-eeth
Wrapped eETH (WEETH) $ 2,465.31 3.39%
ethena-usde
Ethena USDe (USDE) $ 0.999847 0.01%
official-trump
Official Trump (TRUMP) $ 1.45 0.76%
pepe
Pepe (PEPE) $ 0.000003 0.37%
near
NEAR Protocol (NEAR) $ 1.71 0.66%
ondo-finance
Ondo (ONDO) $ 0.373649 1.66%
aave
Aave (AAVE) $ 88.33 3.68%
mantra-dao
MANTRA (MANTRA) $ 0.005406 1.31%
aptos
Aptos (APT) $ 0.59702 2.88%
internet-computer
Internet Computer (ICP) $ 2.10 0.88%
monero
Monero (XMR) $ 365.28 3.73%
whitebit
WhiteBIT Coin (WBT) $ 56.10 1.32%
bittensor
Bittensor (TAO) $ 196.30 0.18%
ethereum-classic
Ethereum Classic (ETC) $ 6.51 0.29%
mantle
Mantle (MNT) $ 0.405984 1.28%
dai
Dai (DAI) $ 0.999694 0.01%
crypto-com-chain
Cronos (CRO) $ 0.053947 0.53%
vechain
VeChain (VET) $ 0.004652 0.11%
polygon-ecosystem-token
POL (ex-MATIC) (POL) $ 0.07529 0.33%
okb
OKB (OKB) $ 85.93 0.06%
kaspa
Kaspa (KAS) $ 0.0262 0.27%
algorand
Algorand (ALGO) $ 0.087085 3.66%
gatechain-token
Gate (GT) $ 6.74 4.50%
render-token
Render (RENDER) $ 1.33 1.78%
filecoin
Filecoin (FIL) $ 0.712651 0.43%
arbitrum
Arbitrum (ARB) $ 0.07992 1.16%
fetch-ai
Artificial Superintelligence Alliance (FET) $ 0.140166 7.73%
cosmos
Cosmos Hub (ATOM) $ 1.34 1.17%
coinbase-wrapped-btc
Coinbase Wrapped BTC (CBBTC) $ 76,366.00 3.12%
tokenize-xchange
Tokenize Xchange (TKX) $ 0.17132 0.00%
ethena
Ethena (ENA) $ 0.091756 0.76%
celestia
Celestia (TIA) $ 0.335494 1.54%
optimism
Optimism (OP) $ 0.087764 0.78%
bonk
Bonk (BONK) $ 0.000003 0.09%
blockstack
Stacks (STX) $ 0.133346 1.33%
binance-peg-weth
Binance-Peg WETH (WETH) $ 2,262.26 3.62%
raydium
Raydium (RAY) $ 0.617528 0.06%
theta-token
Theta Network (THETA) $ 0.135739 4.44%
immutable-x
Immutable (IMX) $ 0.111084 0.71%
lombard-staked-btc
Lombard Staked BTC (LBTC) $ 76,491.00 3.15%
jupiter-exchange-solana
Jupiter (JUP) $ 0.186803 0.50%
movement
Movement (MOVE) $ 0.007495 0.98%
binance-staked-sol
Binance Staked SOL (BNSOL) $ 108.24 4.48%
first-digital-usd
First Digital USD (FDUSD) $ 0.99702 0.01%
injective-protocol
Injective (INJ) $ 4.74 3.13%
kelp-dao-restaked-eth
Kelp DAO Restaked ETH (RSETH) $ 2,404.69 3.37%
xdce-crowd-sale
XDC Network (XDC) $ 0.026722 0.07%
fasttoken
Fasttoken (FTN) $ 0.159833 0.00%
worldcoin-wld
Worldcoin (WLD) $ 0.310679 3.21%
kucoin-shares
KuCoin (KCS) $ 6.60 1.22%
lido-dao
Lido DAO (LDO) $ 0.293617 0.55%
susds
sUSDS (SUSDS) $ 1.08 0.16%
the-graph
The Graph (GRT) $ 0.014491 0.83%
rocket-pool-eth
Rocket Pool ETH (RETH) $ 2,631.35 3.29%
sonic-3
Sonic (S) $ 0.022427 0.08%
mantle-staked-ether
Mantle Staked Ether (METH) $ 2,455.82 3.44%
nexo
NEXO (NEXO) $ 0.717953 0.27%
quant-network
Quant (QNT) $ 59.56 0.54%
flare-networks
Flare (FLR) $ 0.00595 1.60%
sei-network
Sei (SEI) $ 0.04134 0.86%
dogwifcoin
dogwifhat (WIF) $ 0.140785 0.07%
solv-btc
Solv Protocol BTC (SOLVBTC) $ 76,461.00 2.70%
virtual-protocol
Virtuals Protocol (VIRTUAL) $ 0.571969 2.31%
the-sandbox
The Sandbox (SAND) $ 0.041426 1.64%
msol
Marinade Staked SOL (MSOL) $ 133.18 5.83%
gala
GALA (GALA) $ 0.001787 1.09%
usual-usd
Usual USD (USD0) $ 0.998803 0.01%
floki
FLOKI (FLOKI) $ 0.000021 0.22%
jasmycoin
JasmyCoin (JASMY) $ 0.004196 1.64%
tezos
Tezos (XTZ) $ 0.200055 0.89%
kaia
Kaia (KAIA) $ 0.026966 0.49%
solv-protocol-solvbtc-bbn
Solv Protocol Staked BTC (XSOLVBTC) $ 76,043.00 2.27%
iota
IOTA (IOTA) $ 0.034359 2.04%
ethereum-name-service
Ethereum Name Service (ENS) $ 4.22 0.11%
spx6900
SPX6900 (SPX) $ 0.329853 0.03%
fartcoin
Fartcoin (FARTCOIN) $ 0.132423 2.45%
pudgy-penguins
Pudgy Penguins (PENGU) $ 0.006267 3.67%
pyth-network
Pyth Network (PYTH) $ 0.039547 0.36%
solana-swap
Solana Swap (SOS) $ 0.00015 5.65%
bittorrent
BitTorrent (BTT) $ 0.000000262992 0.01%
flow
Flow (FLOW) $ 0.026565 1.94%
bitcoin-sv
Bitcoin SV (BSV) $ 12.81 0.18%
neo
NEO (NEO) $ 1.88 0.39%
chain-2
Onyxcoin (XCN) $ 0.003061 0.05%
ronin
Ronin (RON) $ 0.050292 3.10%
jupiter-staked-sol
Jupiter Staked SOL (JUPSOL) $ 115.56 4.52%
curve-dao-token
Curve DAO (CRV) $ 0.210959 2.29%
jito-governance-token
Jito (JTO) $ 0.499577 1.93%
aioz-network
AIOZ Network (AIOZ) $ 0.046938 0.03%
renzo-restaked-eth
Renzo Restaked ETH (EZETH) $ 2,421.84 3.59%
arweave
Arweave (AR) $ 1.82 0.09%
binance-peg-dogecoin
Binance-Peg Dogecoin (DOGE) $ 0.107393 0.17%
arbitrum-bridged-wbtc-arbitrum-one
Arbitrum Bridged WBTC (Arbitrum One) (WBTC) $ 76,200.00 2.99%
starknet
Starknet (STRK) $ 0.025806 1.77%
axie-infinity
Axie Infinity (AXS) $ 0.880995 4.69%
wbnb
Wrapped BNB (WBNB) $ 759.61 1.56%
dexe
DeXe (DEXE) $ 2.23 2.59%
decentraland
Decentraland (MANA) $ 0.06671 0.37%
based-brett
Brett (BRETT) $ 0.004128 0.85%
elrond-erd-2
MultiversX (EGLD) $ 2.81 0.28%
beam-2
Beam (BEAM) $ 0.001434 0.14%
aerodrome-finance
Aerodrome Finance (AERO) $ 0.423732 0.33%
usdd
USDD (USDD) $ 0.999069 0.06%
dydx-chain
dYdX (DYDX) $ 0.114833 0.48%
thorchain
THORChain (RUNE) $ 0.44745 0.92%
morpho
Morpho (MORPHO) $ 1.91 2.30%
l2-standard-bridged-weth-base
L2 Standard Bridged WETH (Base) (WETH) $ 2,266.86 3.46%
mantle-restaked-eth
Mantle Restaked ETH (CMETH) $ 2,447.46 3.67%
conflux-token
Conflux (CFX) $ 0.038187 1.31%
reserve-rights-token
Reserve Rights (RSR) $ 0.001211 1.30%
arbitrum-bridged-weth-arbitrum-one
Arbitrum Bridged WETH (Arbitrum One) (WETH) $ 2,265.06 3.52%
zcash
Zcash (ZEC) $ 507.88 1.65%
tether-gold
Tether Gold (XAUT) $ 4,239.19 2.17%
ether-fi-staked-btc
Ether.fi Staked BTC (EBTC) $ 76,722.00 4.00%
ai16z
ai16z (AI16Z) $ 0.000311 6.96%
ether-fi-staked-eth
ether.fi Staked ETH (EETH) $ 2,317.47 1.05%
apecoin
ApeCoin (APE) $ 0.134698 1.91%
coredaoorg
Core (CORE) $ 0.019995 1.41%
helium
Helium (HNT) $ 0.182424 1.44%
frax
Legacy Frax Dollar (FRAX) $ 0.990808 0.01%
akash-network
Akash Network (AKT) $ 0.484289 7.19%
compound-governance-token
Compound (COMP) $ 16.35 0.08%
meow
MEOW (MEOW) $ 0.000005 0.26%
usdx-money-usdx
Stables Labs USDX (USDX) $ 0.007517 0.00%
ecash
eCash (XEC) $ 0.000006 1.83%
chiliz
Chiliz (CHZ) $ 0.013088 2.69%
wormhole
Wormhole (W) $ 0.008333 0.92%
amp-token
Amp (AMP) $ 0.000396 0.66%
ultima
Ultima (ULTIMA) $ 2,412.67 0.58%
eigenlayer
EigenCloud (prev. EigenLayer) (EIGEN) $ 0.18436 2.48%
pumpbtc
pumpBTC (PUMPBTC) $ 76,077.00 2.54%
deep
DeepBook (DEEP) $ 0.015234 1.51%
resolv-usr
Resolv USR (USR) $ 0.137668 5.17%
pancakeswap-token
PancakeSwap (CAKE) $ 1.40 1.07%
pax-gold
PAX Gold (PAXG) $ 4,249.27 2.24%
gigachad-2
Gigachad (GIGA) $ 0.001841 3.72%
mina-protocol
Mina Protocol (MINA) $ 0.040843 0.38%
gnosis
Gnosis (GNO) $ 106.36 2.70%
pendle
Pendle (PENDLE) $ 1.38 0.56%
bitcoin-avalanche-bridged-btc-b
Avalanche Bridged BTC (Avalanche) (BTC.B) $ 76,260.00 3.16%
beldex
Beldex (BDX) $ 0.087014 4.38%
echelon-prime
Echelon Prime (PRIME) $ 0.243785 0.31%
zksync
ZKsync (ZK) $ 0.008004 2.16%
paypal-usd
PayPal USD (PYUSD) $ 0.999833 0.01%
havven
Synthetix (SNX) $ 0.216437 2.99%
coinbase-wrapped-staked-eth
Coinbase Wrapped Staked ETH (CBETH) $ 2,539.40 3.57%
true-usd
TrueUSD (TUSD) $ 0.995364 0.03%
stakestone-berachain-vault-token
StakeStone Berachain Vault Token (BERASTONE) $ 1,911.12 1.94%
axelar
Axelar (AXL) $ 0.036373 0.92%
tbtc
tBTC (TBTC) $ 70,942.00 7.49%
apenft
AINFT (NFT) $ 0.000000270174 0.16%
snek
Snek (SNEK) $ 0.000325 0.43%
mog-coin
Mog Coin (MOG) $ 0.000000101074 0.38%
telcoin
Telcoin (TEL) $ 0.001546 4.39%
toshi
Toshi (TOSHI) $ 0.000104 1.62%
dydx
dYdX (ETHDYDX) $ 0.114931 0.53%
kava
Kava (KAVA) $ 0.04033 0.22%
polygon-pos-bridged-weth-polygon-pos
Polygon PoS Bridged WETH (Polygon POS) (WETH) $ 2,261.63 3.58%
newton-project
AB (AB) $ 0.000968 0.91%
notcoin
Notcoin (NOT) $ 0.000353 1.93%
chex-token
Chintai (CHEX) $ 0.011123 0.15%
bridged-usdc-polygon-pos-bridge
Polygon Bridged USDC (Polygon PoS) (USDC.E) $ 0.99972 0.00%
vethor-token
VeThor (VTHO) $ 0.000333 0.78%
frax-ether
Frax Ether (FRXETH) $ 2,262.16 2.20%
1inch
1INCH (1INCH) $ 0.083388 1.17%
trust-wallet-token
Trust Wallet (TWT) $ 0.375728 3.07%
quantixai
Quantix Finance (QFI) $ 59.20 1.12%
grass
Grass (GRASS) $ 0.312975 2.67%
stader-ethx
Stader ETHx (ETHX) $ 2,455.55 2.19%
superfarm
SuperVerse (SUPER) $ 0.083849 1.87%
terra-luna
Terra Luna Classic (LUNC) $ 0.00005 0.98%
sweth
Swell Ethereum (SWETH) $ 2,521.55 3.25%
safe
Safe (SAFE) $ 0.087428 2.19%
livepeer
Livepeer (LPT) $ 1.28 0.23%
hashnote-usyc
Circle USYC (USYC) $ 1.13 0.00%
usdb
USDB (USDB) $ 0.994997 0.85%
creditcoin-2
Creditcoin (CTC) $ 0.068904 0.33%
theta-fuel
Theta Fuel (TFUEL) $ 0.007417 1.98%
oasis-network
Oasis (ROSE) $ 0.005599 1.13%
super-oeth
Super OETH (SUPEROETH) $ 2,263.65 2.59%
aixbt
aixbt (AIXBT) $ 0.017311 0.38%
kusama
Kusama (KSM) $ 3.15 0.39%
bio-protocol
Bio Protocol (BIO) $ 0.024211 0.79%
layerzero
LayerZero (ZRO) $ 0.780197 1.65%
blur
Blur (BLUR) $ 0.014014 3.85%
dash
Dash (DASH) $ 30.88 0.95%
mimblewimblecoin
MimbleWimbleCoin (MWC) $ 11.67 0.43%
cat-in-a-dogs-world
cat in a dogs world (MEW) $ 0.000331 0.85%
ordinals
ORDI (ORDI) $ 3.32 1.68%
solayer-staked-sol
Solayer Staked SOL (SSOL) $ 112.14 4.30%
io
io.net (IO) $ 0.124867 1.70%
ondo-us-dollar-yield
Ondo US Dollar Yield (USDY) $ 1.14 0.09%
freysa-ai
Freysa AI (FAI) $ 0.00265 0.51%
arkham
Arkham (ARKM) $ 0.09563 1.04%
turbo
Turbo (TURBO) $ 0.000834 1.34%
popcat
Popcat (POPCAT) $ 0.044166 1.32%
binance-peg-busd
Binance-Peg BUSD (BUSD) $ 1.00 0.05%
olympus
Olympus (OHM) $ 18.79 1.03%
dog-go-to-the-moon-rune
Dog (Bitcoin) (DOG) $ 0.000602 0.31%
nervos-network
Nervos Network (CKB) $ 0.000846 3.16%
astar
Astar (ASTR) $ 0.004838 1.19%
just
JUST (JST) $ 0.105845 1.97%
compound-wrapped-btc
cWBTC (CWBTC) $ 1,534.90 2.99%
mx-token
MX (MX) $ 1.61 0.53%
zilliqa
Zilliqa (ZIL) $ 0.002609 2.26%
verus-coin
Verus (VRSC) $ 0.303074 13.41%
melania-meme
Melania Meme (MELANIA) $ 0.075238 0.96%
agentfun-ai
AgentFun.AI (AGENTFUN) $ 0.455451 0.54%
holotoken
Holo (HOT) $ 0.000341 0.46%
ai-rig-complex
AI Rig Complex (ARC) $ 0.051085 4.28%
origintrail
OriginTrail (TRAC) $ 0.273961 0.06%
liquid-staked-ethereum
Liquid Staked ETH (LSETH) $ 2,406.26 2.78%
polygon-bridged-wbtc-polygon-pos
Polygon Bridged WBTC (Polygon POS) (WBTC) $ 76,130.00 3.08%
0x
0x Protocol (ZRX) $ 0.079726 0.01%
baby-doge-coin
Baby Doge Coin (BABYDOGE) $ 0.00000000031399 0.15%
ether-fi
Ether.fi (ETHFI) $ 0.363622 0.83%
safepal
SafePal (SFP) $ 0.219758 2.34%
staked-frax-ether
Staked Frax Ether (SFRXETH) $ 2,589.68 3.62%
aethir
Aethir (ATH) $ 0.004032 1.79%
golem
Golem (GLM) $ 0.092521 0.12%
basic-attention-token
Basic Attention (BAT) $ 0.066929 1.08%
swissborg
SwissBorg (BORG) $ 0.142351 0.55%
skale
SKALE (SKL) $ 0.003616 0.94%
wemix-token
WEMIX (WEMIX) $ 0.204418 0.82%
mocaverse
Moca Network (MOCA) $ 0.007565 1.15%
xyo-network
XYO Network (XYO) $ 0.002927 1.06%
gas
Gas (GAS) $ 0.94093 1.78%
celo
Celo (CELO) $ 0.061174 0.56%
benqi-liquid-staked-avax
BENQI Liquid Staked AVAX (SAVAX) $ 12.58 0.25%
qtum
Qtum (QTUM) $ 0.653715 1.24%
spell-token
Spell (SPELL) $ 0.000079 0.70%
would
would (WOULD) $ 0.077108 3.23%
vine
Vine (VINE) $ 0.008139 0.51%
zencash
Horizen (ZEN) $ 4.09 0.27%
woo-network
WOO (WOO) $ 0.011354 1.44%
iotex
IoTeX (IOTX) $ 0.002245 3.81%
bridged-wrapped-ether-starkgate
Bridged Ether (StarkGate) (ETH) $ 2,241.79 5.41%
resolv-wstusr
Resolv wstUSR (WSTUSR) $ 1.13 0.06%
siacoin
Siacoin (SC) $ 0.0005 0.58%
bybit-staked-sol
Bybit Staked SOL (BBSOL) $ 112.08 4.42%
plume
Plume (PLUME) $ 0.011415 1.97%
osmosis
Osmosis (OSMO) $ 0.028272 0.36%
vana
Vana (VANA) $ 0.861267 2.67%
griffain
GRIFFAIN (GRIFFAIN) $ 0.009363 7.46%
zetachain
ZetaChain (ZETA) $ 0.029872 2.55%
uxlink
UXLINK (UXLINK) $ 0.00066 0.03%
ethereum-pow-iou
EthereumPoW (ETHW) $ 0.243711 2.36%
ankr
Ankr Network (ANKR) $ 0.0035 1.91%
akuma-inu
Akuma Inu (AKUMA) $ 0.000000061871 2.04%
tribe-2
Tribe (TRIBE) $ 0.311286 0.70%
ravencoin
Ravencoin (RVN) $ 0.003558 0.44%
enjincoin
Enjin Coin (ENJ) $ 0.02548 4.14%
peanut-the-squirrel
Peanut the Squirrel (PNUT) $ 0.039188 0.24%
elixir-deusd
Elixir deUSD (DEUSD) $ 0.000977 0.00%
memecoin-2
Memecoin (MEME) $ 0.000502 1.28%
aelf
aelf (ELF) $ 0.058657 0.79%
anime
Animecoin (ANIME) $ 0.00247 1.91%
constellation-labs
Constellation (DAG) $ 0.006607 4.27%
polymesh
Polymesh (POLYX) $ 0.032894 2.21%
convex-finance
Convex Finance (CVX) $ 1.48 4.58%
drift-protocol
Drift Protocol (DRIFT) $ 0.012025 1.13%
sats-ordinals
SATS (Ordinals) (SATS) $ 0.000000009757 2.05%
venice-token
Venice Token (VVV) $ 11.51 1.35%
qubic-network
Qubic (QUBIC) $ 0.000000434163 0.89%
coinex-token
CoinEx (CET) $ 0.010975 0.48%
peaq-2
peaq (PEAQ) $ 0.018661 10.13%
threshold-network-token
Threshold Network (T) $ 0.003493 3.03%
stepn
GMT (GMT) $ 0.006745 0.61%
usda-2
USDa (USDA) $ 0.985049 0.08%

Discover more from Block2Learn

Subscribe now to keep reading and get access to the full archive.

Continue reading