2024-01-15 13:35:14 -08:00
{
"$schema" : "../rpc-schema-draft.json" ,
"type" : "object" ,
"rpc" : "txprepare" ,
"title" : "Command to prepare to withdraw funds from the internal wallet" ,
"description" : [
"The **txprepare** RPC command creates an unsigned transaction which spends funds from Core Lightning's internal wallet to the outputs specified in *outputs*." ,
"" ,
"**txprepare** is similar to the first part of a **withdraw** command, but supports multiple outputs and uses *outputs* as parameter. The second part is provided by **txsend**."
] ,
"request" : {
"required" : [
"outputs"
] ,
2024-10-30 09:38:42 +10:30
"additionalProperties" : false ,
2024-01-15 13:35:14 -08:00
"properties" : {
"outputs" : {
"type" : "array" ,
"description" : [
"Format is like: [{destination1: amount1}, {destination2: amount2}] or [{destination: *all*}]. It supports any number of **confirmed** outputs."
] ,
"items" : {
"type" : "outputdesc"
}
} ,
"feerate" : {
"type" : "feerate" ,
"description" : [
"Used for the transaction as initial feerate."
] ,
"default" : "*normal*"
} ,
"minconf" : {
"type" : "u32" ,
"description" : [
"The minimum number of confirmations that used outputs should have."
] ,
"default" : 1
} ,
"utxos" : {
"type" : "array" ,
"description" : [
"To be used to fund the transaction, as an array of `txid:vout`. These must be drawn from the node's available UTXO set."
] ,
"items" : {
"type" : "outpoint"
}
}
}
} ,
"response" : {
"required" : [
"psbt" ,
"unsigned_tx" ,
"txid"
] ,
2024-10-30 09:38:42 +10:30
"additionalProperties" : false ,
2024-01-15 13:35:14 -08:00
"properties" : {
"psbt" : {
"type" : "string" ,
"description" : [
"The PSBT representing the unsigned transaction."
]
} ,
"unsigned_tx" : {
"type" : "hex" ,
"description" : [
"The unsigned transaction."
]
} ,
"txid" : {
"type" : "txid" ,
"description" : [
"The transaction id of *unsigned_tx*; you hand this to lightning-txsend(7) or lightning-txdiscard(7), as the inputs of this transaction are reserved."
]
}
}
} ,
"errors" : [
"On failure, an error is reported and the transaction is not created." ,
"" ,
"- -1: Catchall nonspecific error." ,
"- 301: There are not enough funds in the internal wallet (including fees) to create the transaction." ,
"- 302: The dust limit is not met."
] ,
2024-06-20 14:57:02 -07:00
"author" : [
"Rusty Russell <<rusty@rustcorp.com.au>> is mainly responsible."
] ,
"see_also" : [
"lightning-withdraw(7)" ,
"lightning-txsend(7)" ,
"lightning-txdiscard(7)" ,
"lightning-feerates(7)"
] ,
"resources" : [
"Main web site: <https://github.com/ElementsProject/lightning>"
] ,
"examples" : [
2024-01-15 13:35:14 -08:00
{
2024-03-27 18:45:18 -07:00
"request" : {
"id" : "example:txprepare#1" ,
"method" : "txprepare" ,
2024-07-18 00:28:22 -07:00
"params" : [
[
2024-03-27 18:45:18 -07:00
{
2024-08-09 22:44:53 -07:00
"bcrt1p0002020202020202020202020202020202020202020202020202020202" : 16777216
2024-03-27 18:45:18 -07:00
}
2024-06-18 14:49:51 -07:00
]
2024-07-18 00:28:22 -07:00
]
2024-03-27 18:45:18 -07:00
} ,
"response" : {
2024-08-09 22:44:53 -07:00
"unsigned_tx" : "0200000000000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006000600060006" ,
"txid" : "txidtxprep000100001000010000100001000010000100001000010000100001" ,
"psbt" : "cHNidP8BAgQCAAAAAQMEbwAAAAEEAQpsbt101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000101000"
2024-01-15 13:35:14 -08:00
}
} ,
{
2024-03-27 18:45:18 -07:00
"request" : {
"id" : "example:txprepare#2" ,
"method" : "txprepare" ,
"params" : {
"outputs" : [
{
2024-08-09 22:44:53 -07:00
"bcrt1p0003030303030303030303030303030303030303030303030303030303" : 16777216
2024-03-27 18:45:18 -07:00
}
2024-06-18 14:49:51 -07:00
]
2024-03-27 18:45:18 -07:00
}
} ,
"response" : {
2024-08-09 22:44:53 -07:00
"unsigned_tx" : "0200000000000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002000200020002" ,
"txid" : "txidtxprep000200002000020000200002000020000200002000020000200002" ,
"psbt" : "cHNidP8BAgQCAAAAAQMEbwAAAAEEAQpsbt201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000201000"
2024-01-15 13:35:14 -08:00
}
}
]
}