mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
4b70736d13
Changelog-Added: JSON-RPC: newaddr: p2tr option to create taproot addresses. Changelog-Changed: Wallet: we now use taproot change addresses.
23 lines
500 B
JSON
23 lines
500 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"
|
|
},
|
|
"p2sh-segwit": {
|
|
"deprecated": "v23.02",
|
|
"type": "string",
|
|
"description": "The p2sh-wrapped address"
|
|
}
|
|
}
|
|
}
|