2019-08-31 14:30:56 +02:00
lightning-txprepare -- Command to prepare to withdraw funds from the internal wallet
====================================================================================
2019-08-10 01:54:18 +02:00
SYNOPSIS
--------
2022-01-26 18:18:49 +01:00
**txprepare** *outputs* [*feerate*] [*minconf*] [*utxos*]
2019-08-10 01:54:18 +02:00
DESCRIPTION
-----------
The **txprepare** RPC command creates an unsigned transaction which
2022-04-06 07:09:48 +02:00
spends funds from Core Lightning's internal wallet to the outputs specified
2019-08-22 20:47:24 +02:00
in *outputs* .
The *outputs* is the array of output that include *destination*
and *amount* (\{*destination*: *amount* \}). Its format is like:
2022-01-26 18:18:49 +01:00
[\{address1: amount1\}, \{address2: amount2\}]
2019-08-22 20:47:24 +02:00
or
2022-01-26 18:18:49 +01:00
[\{address: *all* \}].
2020-02-17 17:34:29 +01:00
It supports any number of **confirmed** outputs.
2019-08-22 20:47:24 +02:00
The *destination* of output is the address which can be of any Bitcoin accepted
type, including bech32.
The *amount* of output is the amount to be sent from the internal wallet
(expressed, as name suggests, in amount). The string *all* can be used to specify
all available funds. Otherwise, it is in amount precision; it can be a whole
number, a whole number ending in *sat* , a whole number ending in *000msat* ,
or a number with 1 to 8 decimal places ending in *btc* .
2023-04-07 06:43:45 +02:00
*feerate* is an optional feerate to use: see NOTES in lightning-feerates(7)
for possible values. The default is *normal* .
2019-10-07 17:02:57 +02:00
*minconf* specifies the minimum number of confirmations that used
outputs should have. Default is 1.
2019-08-10 01:54:18 +02:00
2019-08-28 05:35:29 +02:00
*utxos* specifies the utxos to be used to fund the transaction, as an array
of "txid:vout". These must be drawn from the node's available UTXO set.
2019-10-07 17:02:57 +02:00
**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** .
2019-08-10 01:54:18 +02:00
RETURN VALUE
------------
2021-06-16 03:10:17 +02:00
[comment]: # (GENERATE-FROM-SCHEMA-START)
On success, an object is returned, containing:
2022-09-05 23:33:09 +02:00
2021-06-16 03:10:17 +02:00
- **psbt** (string): the PSBT representing the unsigned transaction
2022-09-05 23:45:06 +02:00
- **unsigned\_tx** (hex): the unsigned transaction
2022-11-11 03:03:13 +01:00
- **txid** (txid): 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.
2021-09-03 12:07:59 +02:00
2021-06-16 03:10:17 +02:00
[comment]: # (GENERATE-FROM-SCHEMA-END)
2019-08-10 01:54:18 +02:00
On failure, an error is reported and the transaction is not created.
The following error codes may occur:
2023-10-14 10:09:05 +02:00
2019-08-10 01:54:18 +02:00
- -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.
AUTHOR
------
Rusty Russell < < rusty @ rustcorp . com . au > > is mainly responsible.
SEE ALSO
--------
2020-07-12 05:30:35 +02:00
lightning-withdraw(7), lightning-txsend(7), lightning-txdiscard(7),
lightning-feerates(7)
2019-08-10 01:54:18 +02:00
RESOURCES
---------
Main web site: < https: / / github . com / ElementsProject / lightning >
2020-08-25 03:33:16 +02:00
2024-01-25 01:28:53 +01:00
[comment]: # ( SHA256STAMP:2711c2b658ca99c61153facb3a532ae3b3a5b8ac86419796e0bf2f7daa6e53c5)