From d2a09c83554cec864a27e704cf2a0d513691a567 Mon Sep 17 00:00:00 2001 From: Pieter Wuille <pieter@wuille.net> Date: Mon, 30 Aug 2021 13:45:22 -0400 Subject: [PATCH] doc: mention bech32m/BIP350 in doc/descriptors.md --- doc/descriptors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/descriptors.md b/doc/descriptors.md index e27ff875468..3bbb626a422 100644 --- a/doc/descriptors.md +++ b/doc/descriptors.md @@ -99,7 +99,7 @@ Descriptors consist of several types of expressions. The top level expression is `ADDR` expressions are any type of supported address: - P2PKH addresses (base58, of the form `1...` for mainnet or `[nm]...` for testnet). Note that P2PKH addresses in descriptors cannot be used for P2PK outputs (use the `pk` function instead). - P2SH addresses (base58, of the form `3...` for mainnet or `2...` for testnet, defined in [BIP 13](https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki)). -- Segwit addresses (bech32, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki)). +- Segwit addresses (bech32 and bech32m, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) and [BIP 350](https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki)). ## Explanation