You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since BIP86 derivation is now always used (based on hsm_secret),
there's no need for a separate 'bip86' addresstype option in the
schema. This reverts the schema changes that added the bip86 option,
example, and related descriptions.
The p2tr addresstype now always uses BIP86 derivation when the
hsm_secret is mnemonic-based.
Copy file name to clipboardExpand all lines: contrib/msggen/msggen/schema.json
+3-15Lines changed: 3 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -11725,6 +11725,7 @@
11725
11725
},
11726
11726
"mnemonic": {
11727
11727
"type": "string",
11728
+
"added": "v25.12",
11728
11729
"description": [
11729
11730
"The BIP39 mnemonic phrase for the HSM secret (only present for mnemonic-based secrets)."
11730
11731
]
@@ -26482,13 +26483,12 @@
26482
26483
"addresstype": {
26483
26484
"type": "string",
26484
26485
"description": [
26485
-
"It specifies the type of address wanted; currently *bech32* (e.g. `tb1qu9j4lg5f9rgjyfhvfd905vw46eg39czmktxqgg` on bitcoin testnet or `bc1qwqdg6squsna38e46795at95yu9atm8azzmyvckulcc7kytlcckxswvvzej` on bitcoin mainnet), *p2tr* taproot addresses, or *bip86* for BIP86-derived taproot addresses. The special value *all* generates all known address types for the same underlying key."
26486
+
"It specifies the type of address wanted; currently *bech32* (e.g. `tb1qu9j4lg5f9rgjyfhvfd905vw46eg39czmktxqgg` on bitcoin testnet or `bc1qwqdg6squsna38e46795at95yu9atm8azzmyvckulcc7kytlcckxswvvzej` on bitcoin mainnet), or *p2tr* taproot addresses. The special value *all* generates all known address types for the same underlying key."
26486
26487
],
26487
26488
"default": "*bech32* address",
26488
26489
"enum": [
26489
26490
"bech32",
26490
26491
"p2tr",
26491
-
"bip86",
26492
26492
"all"
26493
26493
]
26494
26494
}
@@ -26502,7 +26502,7 @@
26502
26502
"added": "v23.08",
26503
26503
"type": "string",
26504
26504
"description": [
26505
-
"The taproot address (returned for both 'p2tr' and 'bip86' addresstype)."
0 commit comments