From 36dee3f3dc19f0d5d13d4f1589af239b9b00f29a Mon Sep 17 00:00:00 2001 From: dergigi Date: Mon, 15 Jun 2026 17:26:15 +0200 Subject: [PATCH 1/4] feat: add BIP 85 topic page --- .../seventeenth-wave-of-bitcoin-grants.mdx | 2 +- data/topics/bip-85.mdx | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 data/topics/bip-85.mdx diff --git a/data/blog/seventeenth-wave-of-bitcoin-grants.mdx b/data/blog/seventeenth-wave-of-bitcoin-grants.mdx index 93225b532..33e75e3be 100644 --- a/data/blog/seventeenth-wave-of-bitcoin-grants.mdx +++ b/data/blog/seventeenth-wave-of-bitcoin-grants.mdx @@ -152,7 +152,7 @@ License: MIT [Krux]: /blog/bitcoin-grants-december-2023#krux [SeedSigner]: https://seedsigner.com/ [Liquid Network]: https://liquid.net/ -[`BIP-85`]: https://github.com/bitcoin/bips/blob/master/bip-0085.mediawiki +[`BIP-85`]: /topics/bip-85 [cryptoadvance/specter-diy]: https://github.com/cryptoadvance/specter-diy --- diff --git a/data/topics/bip-85.mdx b/data/topics/bip-85.mdx new file mode 100644 index 000000000..be1e225de --- /dev/null +++ b/data/topics/bip-85.mdx @@ -0,0 +1,19 @@ +--- +title: 'BIP 85' +summary: 'A standard for deriving independent child entropy, mnemonics, and seeds from one master BIP 32 root key.' +category: 'Bitcoin' +aliases: ['BIP85', 'deterministic entropy', 'child mnemonics', 'derived seeds'] +--- + +BIP 85 defines a way to derive fresh wallet entropy from one master BIP 32 root key. One root seed can produce separate child secrets for different devices, apps, and use cases, while still giving the user one backup to keep safe. + +The standard derives a hardened child key and runs it through HMAC-SHA512 to produce application-specific entropy. Wallets can turn that entropy into a 12-word, 18-word, or 24-word BIP 39 mnemonic, an HD seed, a WIF, or other formats covered by the spec. Each child output stays isolated from the others, so one exposed child mnemonic does not expose the parent seed or sibling children. + +BIP 85 is useful for people who want separate wallets for spending, savings, testing, or signing devices without managing a growing stack of backups. It also shows up in tools like [Specter DIY](/blog/seventeenth-wave-of-bitcoin-grants#specter-diy), which added support for BIP 85 derived seeds as part of its broader device roadmap. + +## References + +- [BIP 85](https://github.com/bitcoin/bips/blob/master/bip-0085.mediawiki) +- [BIP 39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki) +- [BIP 32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) +- [bips.dev: BIP 85 rendered](https://bips.dev/85/) From 38f4a9c9a2d7379b62ebeb0ef293967cbcfc850c Mon Sep 17 00:00:00 2001 From: Gigi <109058+dergigi@users.noreply.github.com> Date: Wed, 8 Jul 2026 17:17:47 +0200 Subject: [PATCH 2/4] fix: apply suggestions from Tuma Co-authored-by: Tuma <119351965+TumaBitcoiner@users.noreply.github.com> --- data/topics/bip-85.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/topics/bip-85.mdx b/data/topics/bip-85.mdx index be1e225de..8686a120d 100644 --- a/data/topics/bip-85.mdx +++ b/data/topics/bip-85.mdx @@ -5,9 +5,9 @@ category: 'Bitcoin' aliases: ['BIP85', 'deterministic entropy', 'child mnemonics', 'derived seeds'] --- -BIP 85 defines a way to derive fresh wallet entropy from one master BIP 32 root key. One root seed can produce separate child secrets for different devices, apps, and use cases, while still giving the user one backup to keep safe. +BIP 85 defines a way to derive fresh wallet entropy from one master [BIP 32][/topics/bip-32] root key. One root seed can produce separate child secrets for different devices, apps, and use cases, while still giving the user one backup to keep safe. -The standard derives a hardened child key and runs it through HMAC-SHA512 to produce application-specific entropy. Wallets can turn that entropy into a 12-word, 18-word, or 24-word BIP 39 mnemonic, an HD seed, a WIF, or other formats covered by the spec. Each child output stays isolated from the others, so one exposed child mnemonic does not expose the parent seed or sibling children. +The standard derives a hardened child key and runs it through HMAC-SHA512 to produce application-specific entropy. Wallets can turn that entropy into a 12-word, 18-word, or 24-word BIP 39 mnemonic, an HD seed, a [WIF][/topics/wif], or other formats covered by the spec. Each child output stays isolated from the others, so one exposed child mnemonic does not expose the parent seed or sibling children. BIP 85 is useful for people who want separate wallets for spending, savings, testing, or signing devices without managing a growing stack of backups. It also shows up in tools like [Specter DIY](/blog/seventeenth-wave-of-bitcoin-grants#specter-diy), which added support for BIP 85 derived seeds as part of its broader device roadmap. From be0679381999a12c0d735135db360f0e7c4d8604 Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 8 Jul 2026 17:19:56 +0200 Subject: [PATCH 3/4] fix: correct malformed markdown links in bip-85 topic page --- data/topics/bip-85.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/topics/bip-85.mdx b/data/topics/bip-85.mdx index 8686a120d..03ac7ee16 100644 --- a/data/topics/bip-85.mdx +++ b/data/topics/bip-85.mdx @@ -5,9 +5,9 @@ category: 'Bitcoin' aliases: ['BIP85', 'deterministic entropy', 'child mnemonics', 'derived seeds'] --- -BIP 85 defines a way to derive fresh wallet entropy from one master [BIP 32][/topics/bip-32] root key. One root seed can produce separate child secrets for different devices, apps, and use cases, while still giving the user one backup to keep safe. +BIP 85 defines a way to derive fresh wallet entropy from one master [BIP 32](/topics/bip-32) root key. One root seed can produce separate child secrets for different devices, apps, and use cases, while still giving the user one backup to keep safe. -The standard derives a hardened child key and runs it through HMAC-SHA512 to produce application-specific entropy. Wallets can turn that entropy into a 12-word, 18-word, or 24-word BIP 39 mnemonic, an HD seed, a [WIF][/topics/wif], or other formats covered by the spec. Each child output stays isolated from the others, so one exposed child mnemonic does not expose the parent seed or sibling children. +The standard derives a hardened child key and runs it through HMAC-SHA512 to produce application-specific entropy. Wallets can turn that entropy into a 12-word, 18-word, or 24-word BIP 39 mnemonic, an HD seed, a [WIF](/topics/wif), or other formats covered by the spec. Each child output stays isolated from the others, so one exposed child mnemonic does not expose the parent seed or sibling children. BIP 85 is useful for people who want separate wallets for spending, savings, testing, or signing devices without managing a growing stack of backups. It also shows up in tools like [Specter DIY](/blog/seventeenth-wave-of-bitcoin-grants#specter-diy), which added support for BIP 85 derived seeds as part of its broader device roadmap. From f1b8ad3d9dd2131e181c6caad8c5f732c24ef6fe Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 8 Jul 2026 17:20:50 +0200 Subject: [PATCH 4/4] fix: resolve merge conflict with internal topic links --- data/blog/seventeenth-wave-of-bitcoin-grants.mdx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/data/blog/seventeenth-wave-of-bitcoin-grants.mdx b/data/blog/seventeenth-wave-of-bitcoin-grants.mdx index 993210323..0841fb342 100644 --- a/data/blog/seventeenth-wave-of-bitcoin-grants.mdx +++ b/data/blog/seventeenth-wave-of-bitcoin-grants.mdx @@ -151,13 +151,8 @@ License: MIT [`embit`]: https://embit.rocks/#/ [Krux]: /blog/bitcoin-grants-december-2023#krux [SeedSigner]: https://seedsigner.com/ -<<<<<<< content/add-bip-85-topic-page-257 -[Liquid Network]: https://liquid.net/ -[`BIP-85`]: /topics/bip-85 -======= [Liquid Network]: /topics/liquid-network -[`BIP-85`]: https://github.com/bitcoin/bips/blob/master/bip-0085.mediawiki ->>>>>>> master +[`BIP-85`]: /topics/bip-85 [cryptoadvance/specter-diy]: https://github.com/cryptoadvance/specter-diy ---