core-lightning/doc/schemas/lightning-upgradewallet.json
ShahanaFarooqui 9592facf83 doc: Lock example values
Changelog-Added: Test script generates all RPC documentation examples now.
2024-11-26 21:45:19 +10:30

110 lines
3.5 KiB
JSON

{
"$schema": "../rpc-schema-draft.json",
"type": "object",
"rpc": "upgradewallet",
"title": "Command to spend all P2SH-wrapped inputs into a Native Segwit output",
"description": [
"`upgradewallet` is a convenience RPC which will spend all p2sh-wrapped Segwit deposits in a wallet into a single Native Segwit P2WPKH address."
],
"request": {
"required": [],
"additionalProperties": false,
"properties": {
"feerate": {
"type": "feerate",
"description": [
"Feerate for the upgrade transaction."
],
"added": "v23.02",
"default": "*opening*"
},
"reservedok": {
"type": "boolean",
"description": [
"Tells the wallet to include all P2SH-wrapped inputs, including reserved ones."
],
"added": "v23.02"
}
}
},
"response": {
"required": [
"upgraded_outs"
],
"additionalProperties": false,
"properties": {
"upgraded_outs": {
"type": "u64",
"description": [
"Count of spent/upgraded UTXOs."
],
"added": "v23.02"
},
"psbt": {
"type": "string",
"description": [
"The PSBT that was finalized and sent."
],
"added": "v23.02"
},
"tx": {
"type": "hex",
"description": [
"The raw transaction which was sent."
],
"added": "v23.02"
},
"txid": {
"type": "txid",
"description": [
"The txid of the **tx**."
],
"added": "v23.02"
}
}
},
"usage": [
"The caller is trying to buy a liquidity ad but the command keeps failing. They have funds in their wallet, but they're all P2SH-wrapped outputs.",
"",
"The caller can call `upgradewallet` to convert their funds to native segwit outputs, which are valid for liquidity ad buys."
],
"author": [
"Lisa Neigut <<niftynei@gmail.com>> is mainly responsible."
],
"see_also": [
"lightning-utxopsbt(7)",
"lightning-reserveinputs(7)",
"lightning-unreserveinputs(7)"
],
"resources": [
"Main web site: <https://github.com/ElementsProject/lightning>"
],
"examples": [
{
"request": {
"id": "example:upgradewallet#1",
"method": "upgradewallet",
"params": {}
},
"response": {
"upgraded_outs": 0
}
},
{
"request": {
"id": "example:upgradewallet#2",
"method": "upgradewallet",
"params": {
"feerate": "urgent",
"reservedok": true
}
},
"response": {
"tx": "02000000000101upgd20000200002000020000200002000020000200002000020000200002000020000200002000020000200002000020000200002000020000200002000020000200002000020000200002000020000200002000020000",
"txid": "txidupgrade200000200000200000200000200000200000200000200000200000",
"psbt": "cHNidP8BAgQCAAAAAQMEbwAAAAEEAQpsbt110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000110000",
"upgraded_outs": 1
}
}
]
}