Thanks to Dice Rolls, Bitcoin Keys Are Stored Offline, But Not Everyone Will Do It

cryptonews.ruPublished on 2026-08-01Last updated on 2026-08-01

Abstract

The article discusses using dice rolls to generate secure Bitcoin wallet seeds, providing entropy independent of potentially flawed hardware random number generators. It explains that each fair dice roll offers about 2.585 bits of entropy, with around 50 rolls needed for a standard 12-word seed phrase and 99+ recommended for higher security. This method gained attention after a vulnerability was revealed in some Coldcard hardware wallets, where a faulty firmware RNG (dating back to 2021) compromised generated keys. The analysis notes that while a dice-generated main seed was safe from this specific flaw, other Coldcard functions (like creating paper wallets, backup keys, or passwords) could still be vulnerable if they used the defective RNG. The piece argues that while dice-based entropy is technically robust, the manual process is error-prone, tedious, and unrealistic for most new users, who might make mistakes in recording or inputting rolls. It concludes that while manual entropy generation should remain an option for advanced users, the long-term goal is to develop reliable, user-friendly hardware and software that securely generates randomness without requiring specialized knowledge. Coldcard users are advised to check their firmware version and replace any secondary secrets (like paper wallet keys) created with vulnerable devices, while also considering multi-signature setups with devices from different manufacturers for added security.

Claude Shannon, the mathematician who laid the foundations of information theory, used entropy to measure the degree of uncertainty of an outcome. For a fair six-sided die, each face has an equal probability of landing — one in six. This gives each roll approximately 2.585 bits of entropy. A coin flip gives 1 bit, and an eight-sided die roll gives 3 bits.

A recent Coldcard scandal led to active discussion on social media about dice-roll-based seed generation. Some users now consider it necessary, others claim it protected their funds, while experienced operators note that most beginners will not tolerate the slow and error-prone setup process.

The important point is not that the thrown die behaves randomly at the atomic level. It doesn't. The result is determined by the laws of physics, but too many small variables change simultaneously for anyone to reliably calculate the outcome. The die leaves the hand at a certain speed, angle, height, and with a certain spin, then hits the table and changes direction with each bounce.

In practice, even a tiny change in the throw can lead to a completely different result. A slightly different finger position or a slightly stronger throw alter the trajectory enough that the final number cannot be predicted by observing the motion. The result may be deterministic in theory, but for wallet generation, what matters is that an attacker cannot reproduce or compute it.

Converting Dice Roll Results into Usable Data

A computer cannot directly use a list of die roll results. The rolls must first be converted into binary data, and the conversion method matters.

A simple "even-odd" method is easy to understand but wastes most of the available entropy. Each roll is reduced to one bit, even though the die generates about 2.6 bits of information. More efficient methods collect a long sequence of rolls and process the entire string, usually via a cryptographic hash function. This preserves much more randomness.

The same principle underlies Diceware—a long-known method for creating secure passphrases—as well as manual Bitcoin wallet creation. A typical 12-word wallet recovery phrase consists of 128 bits of entropy. At roughly 2.6 bits per roll, about 50 fair rolls provide enough raw information to surpass this threshold.

Coinkite, the manufacturer of the Coldcard hardware wallet, recommends 99 or more rolls for users aiming for entropy close to 256 bits. This doesn't make the wallet twice as difficult to use but provides the generated secret with a much larger mathematical safety margin.

Practical Test of Dice-Generated Seeds

This distinction gained importance after Coinkite disclosed a firmware issue dating back to 2021. On some Coldcard devices, the software could bypass the internal hardware random number generator and instead use a more vulnerable process tied to non-secret device information.

Because parts of this algorithm could be recovered, attackers could narrow down possible wallet keys instead of searching the entire key space. This vulnerability was linked to the theft of an estimated 128,6633 BTC from roughly 1,100 addresses (as of 1:00 PM ET).

Image Source: X

Wallet seeds created solely based on a sufficient number of independent dice rolls were not at risk via the same channel. These users supplied their own entropy, so the faulty hardware generator did not participate in creating the wallet's core secret.

However, this protection applied only to the seed phrase generated via dice rolls. It did not automatically protect all other secret data generated by the device.

Wizard Sardine Analyzes the Fine Print

On August 1, security researcher Kevin Loaec published an assessment of the Coldcard vulnerability on the Wizard Sardine website. His most crucial observation concerned Coldcard features that generated their own secret keys separately from the main wallet seed.

"I find it extremely important to emphasize that even users who imported or generated a seed via dice are vulnerable if they used the following features," Loaec wrote on X, after which he presented a diagram of the vulnerable system.

The diagram shows how the vulnerable random number generator feeds several secondary Coldcard functions. These include creating a paper wallet, cloning the device, encrypting USB sessions, the Secret Teleport transfer feature, creating keys for multisignature, the built-in password generator, and hardware security module authentication codes.

Image Source: X post by security researcher Kevin Loaec.

The main wallet created with 99 dice rolls remained in a separate part of the system. The problem was that other tools could still request new random data from the faulty generator. Consequently, a secure seed phrase did not guarantee that every password, backup, authentication code, or secondary key created on the same device was equally secure.

Why Most New Users Won't Roll Dice

Dice-generated entropy is technically sound when done correctly, but for most new users, it's an unrealistic default option. Rolling a die 50 or 99 times, accurately entering each result, and verifying that no roll was missed or repeated requires patience and high concentration. One incorrectly entered number can completely change the resulting wallet address, and most devices cannot determine if an error was caused by a bad roll, an input mistake, or misunderstanding the instructions.

Image Source: X

This process also carries risks that aren't present with a properly functioning hardware generator. Users may record roll results on paper, photograph them, input them into an online tool, or leave the list in a place where it could be found by others. Some people roll the die in a repetitive or controlled manner, use a loaded or damaged die, or stop the process early because it seems excessive. The mathematical foundation may be robust, but the security of the outcome depends entirely on how meticulously the user follows the procedure.

Image Source: X

That is why dice rolling is not always considered the best method for many people, even among experienced Bitcoin users. It replaces trust in a device with trust in a manual process. For a technically cautious user who understands the essence of entropy, verifies the method, and keeps the roll sequence secret, such a trade-off may make sense. For the average first-time wallet setup buyer, it creates several opportunities to make an irreversible mistake while also being a tedious process.

Image Source: X

Moreover, it's difficult to imagine widespread Bitcoin adoption if people must sit at a table and record the results of 99 dice rolls to obtain and secure their funds. Security measures must withstand the tests of real-world home conditions, tight schedules, distractions, and users unwilling to study cryptography. Manual entropy generation should remain available as an option for experienced users, but the long-term goal is to create hardware and software that correctly generates strong randomness, clearly explains what's happening, and requires as little specialized knowledge as possible.

What Coldcard Owners Should Check

Owners of vulnerable Coldcard devices should first check the firmware version installed on their device. Then they should analyze which features they used while operating with outdated firmware, rather than focusing exclusively on how the main wallet seed was generated.

Anyone who used a vulnerable device to generate a paper wallet, a cloning secret key, a password, a multisig key, or an authentication code may need to replace those materials immediately. Installing the update prevents the same problem with new secrets but does not fix what was created previously.

This incident also strengthens the practical rationale for using multi-vendor wallet setups. In a multisignature scheme, separate hardware devices from different manufacturers may be required to authorize a transaction. Such a structure doesn't eliminate firmware bugs but can prevent a situation where a single defective random number generator alone jeopardizes the entire wallet.

end-content

Trending Cryptos

Related Questions

QWhat is the primary reason dice throws are considered a secure method for generating Bitcoin wallet seeds?

AThe outcome of a die throw is theoretically deterministic but practically unpredictable due to the numerous, complex physical variables involved (like speed, angle, spin). This makes it impossible for an attacker to reliably reproduce or calculate the result, providing true randomness.

QAccording to the article, why does using dice for entropy generation pose a practical challenge for many new Bitcoin users?

AThe process is slow, error-prone, and requires significant patience and concentration. It involves throwing a die 50-99 times, accurately recording each result, and ensuring no errors. This is tedious and introduces risks like misrecording, using biased dice, or accidentally exposing the sequence.

QBased on the Coldcard vulnerability discussed, why wasn't a seed generated with 99 dice rolls necessarily fully protected?

AWhile the main wallet seed generated from dice rolls was secure, other functions on the Coldcard device (like creating paper wallets, clone secrets, or passwords) could still request random data from the faulty internal hardware random number generator (RNG), creating vulnerable secondary secrets.

QHow does the 'odd-even' method for converting die rolls waste entropy compared to more efficient methods?

AThe simple 'odd-even' method reduces each die roll (which contains about 2.6 bits of entropy) to just 1 bit of data, wasting most of the available randomness. More efficient methods collect a long sequence of rolls and process the entire string, typically with a cryptographic hash function, preserving much more entropy.

QWhat broader security principle does the article suggest is reinforced by the Coldcard incident?

AThe incident reinforces the principle of using multi-vendor, multi-signature wallet setups. While it doesn't eliminate firmware bugs, it prevents a single defective random number generator from compromising an entire wallet, as multiple independent devices from different manufacturers are required to approve transactions.

Related Reads

Trading

Spot

Hot Articles

What is $BITCOIN

DIGITAL GOLD ($BITCOIN): A Comprehensive Analysis Introduction to DIGITAL GOLD ($BITCOIN) DIGITAL GOLD ($BITCOIN) is a blockchain-based project operating on the Solana network, which aims to combine the characteristics of traditional precious metals with the innovation of decentralized technologies. While it shares a name with Bitcoin, often referred to as “digital gold” due to its perception as a store of value, DIGITAL GOLD is a separate token designed to create a unique ecosystem within the Web3 landscape. Its goal is to position itself as a viable alternative digital asset, although specifics regarding its applications and functionalities are still developing. What is DIGITAL GOLD ($BITCOIN)? DIGITAL GOLD ($BITCOIN) is a cryptocurrency token explicitly designed for use on the Solana blockchain. In contrast to Bitcoin, which provides a widely recognized value storage role, this token appears to focus on broader applications and characteristics. Notable aspects include: Blockchain Infrastructure: The token is built on the Solana blockchain, known for its capacity to handle high-speed and low-cost transactions. Supply Dynamics: DIGITAL GOLD has a maximum supply capped at 100 quadrillion tokens (100P $BITCOIN), although details regarding its circulating supply are currently undisclosed. Utility: While precise functionalities are not explicitly outlined, there are indications that the token could be utilized for various applications, potentially involving decentralized applications (dApps) or asset tokenization strategies. Who is the Creator of DIGITAL GOLD ($BITCOIN)? At present, the identity of the creators and development team behind DIGITAL GOLD ($BITCOIN) remains unknown. This situation is typical among many innovative projects within the blockchain space, particularly those aligning with decentralized finance and meme coin phenomena. While such anonymity may foster a community-driven culture, it intensifies concerns about governance and accountability. Who are the Investors of DIGITAL GOLD ($BITCOIN)? The available information indicates that DIGITAL GOLD ($BITCOIN) does not have any known institutional backers or prominent venture capital investments. The project seems to operate on a peer-to-peer model focused on community support and adoption rather than traditional funding routes. Its activity and liquidity are primarily situated on decentralized exchanges (DEXs), such as PumpSwap, rather than established centralized trading platforms, further highlighting its grassroots approach. How DIGITAL GOLD ($BITCOIN) Works The operational mechanics of DIGITAL GOLD ($BITCOIN) can be elaborated on based on its blockchain design and network attributes: Consensus Mechanism: By leveraging Solana’s unique proof-of-history (PoH) combined with a proof-of-stake (PoS) model, the project ensures efficient transaction validation contributing to the network's high performance. Tokenomics: While specific deflationary mechanisms have not been extensively detailed, the vast maximum token supply implies that it may cater to microtransactions or niche use cases that are still to be defined. Interoperability: There exists the potential for integration with Solana’s broader ecosystem, including various decentralized finance (DeFi) platforms. However, the details regarding specific integrations remain unspecified. Timeline of Key Events Here is a timeline that highlights significant milestones concerning DIGITAL GOLD ($BITCOIN): 2023: The initial deployment of the token occurs on the Solana blockchain, marked by its contract address. 2024: DIGITAL GOLD gains visibility as it becomes available for trading on decentralized exchanges like PumpSwap, allowing users to trade it against SOL. 2025: The project witnesses sporadic trading activity and potential interest in community-led engagements, although no noteworthy partnerships or technical advancements have been documented as of yet. Critical Analysis Strengths Scalability: The underlying Solana infrastructure supports high transaction volumes, which could enhance the utility of $BITCOIN in various transaction scenarios. Accessibility: The potential low trading price per token could attract retail investors, facilitating wider participation due to fractional ownership opportunities. Risks Lack of Transparency: The absence of publicly known backers, developers, or an audit process may yield skepticism regarding the project's sustainability and trustworthiness. Market Volatility: The trading activity is heavily reliant on speculative behavior, which can result in significant price volatility and uncertainty for investors. Conclusion DIGITAL GOLD ($BITCOIN) emerges as an intriguing yet ambiguous project within the rapidly evolving Solana ecosystem. While it attempts to leverage the “digital gold” narrative, its departure from Bitcoin's established role as a store of value underscores the need for a clearer differentiation of its intended utility and governance structure. Future acceptance and adoption will likely depend on addressing the current opacity and defining its operational and economic strategies more explicitly. Note: This report encompasses synthesised information available as of October 2023, and developments may have transpired beyond the research period.

1.4k Total ViewsPublished 2025.05.13Updated 2025.05.13

What is $BITCOIN

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of BTC (BTC) are presented below.

活动图片