core-lightning/doc/schemas/newaddr.schema.json
Rusty Russell f342630b92 wallet: remove P2SH support.
Seriously, it's taproot time, let's get rid of p2sh wrapped segwit.

Changelog-Removed: wallet: removal of p2sh-segwit addresses; newaddr won't issue them, we won't watch them for new funds (deprecated in *23.02*)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2024-01-26 10:30:22 +10:30

17 lines
370 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"required": [],
"properties": {
"p2tr": {
"added": "v23.08",
"type": "string",
"description": "The taproot address"
},
"bech32": {
"type": "string",
"description": "The bech32 (native segwit) address"
}
}
}