2020-09-03 20:01:45 +02:00
|
|
|
lightning-openchannel\_init -- Command to initiate a channel to a peer
|
|
|
|
=====================================================================
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
|
2022-01-26 18:18:49 +01:00
|
|
|
**openchannel_init** *id* *amount* *initalpsbt* [*commitment_feerate*] [*funding_feerate*] [*announce*] [*close_to*] [*request_amt*] [*compact_lease*]
|
2020-09-03 20:01:45 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
`openchannel_init` is a low level RPC command which initiates a channel
|
|
|
|
open with a specified peer. It uses the openchannel protocol
|
|
|
|
which allows for interactive transaction construction.
|
|
|
|
|
|
|
|
*id* is the node id of the remote peer.
|
|
|
|
|
|
|
|
*amount* is the satoshi value that we will contribute to the channel.
|
|
|
|
This value will be _added_ to the provided PSBT in the output which is
|
|
|
|
encumbered by the 2-of-2 script for this channel.
|
|
|
|
|
|
|
|
*initialpsbt* is the funded, incomplete PSBT that specifies the UTXOs and
|
|
|
|
change output for our channel contribution. It can be updated,
|
2021-03-11 05:32:48 +01:00
|
|
|
see `openchannel_update`; *initialpsbt* must have at least one input.
|
|
|
|
Must have the Non-Witness UTXO (PSBT\_IN\_NON\_WITNESS\_UTXO) set for
|
|
|
|
every input. An error (code 309) will be returned if this requirement
|
|
|
|
is not met.
|
2020-09-03 20:01:45 +02:00
|
|
|
|
|
|
|
*commitment_feerate* is an optional field. Sets the feerate for
|
|
|
|
commitment transactions: see **fundchannel**.
|
|
|
|
|
2021-03-11 05:32:48 +01:00
|
|
|
*funding_feerate* is an optional field. Sets the feerate for the
|
2020-09-03 20:01:45 +02:00
|
|
|
funding transaction. Defaults to 'opening' feerate.
|
|
|
|
|
|
|
|
*announce* is an optional field. Whether or not to announce this channel.
|
|
|
|
|
|
|
|
*close_to* is a Bitcoin address to which the channel funds should be
|
2021-03-11 05:32:48 +01:00
|
|
|
sent on close. Only valid if both peers have negotiated
|
2020-09-03 20:01:45 +02:00
|
|
|
`option_upfront_shutdown_script`.
|
|
|
|
|
2021-06-08 23:50:41 +02:00
|
|
|
*request_amt* is an amount of liquidity you'd like to lease from the peer.
|
|
|
|
If peer supports `option_will_fund`, indicates to them to include this
|
2021-07-02 23:19:47 +02:00
|
|
|
much liquidity into the channel. Must also pass in *compact_lease*.
|
|
|
|
|
|
|
|
*compact_lease* is a compact represenation of the peer's expected
|
|
|
|
channel lease terms. If the peer's terms don't match this set, we will
|
|
|
|
fail to open the channel.
|
2021-06-08 23:50:41 +02:00
|
|
|
|
2020-09-03 20:01:45 +02:00
|
|
|
|
|
|
|
RETURN VALUE
|
|
|
|
------------
|
|
|
|
|
2021-06-16 03:10:17 +02:00
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-START)
|
|
|
|
On success, an object is returned, containing:
|
|
|
|
- **channel_id** (hex): the channel id of the channel (always 64 characters)
|
2021-07-08 23:23:16 +02:00
|
|
|
- **psbt** (string): the (incomplete) PSBT of the funding transaction
|
2021-06-16 03:10:17 +02:00
|
|
|
- **commitments_secured** (boolean): whether the *psbt* is complete (always *false*)
|
|
|
|
- **funding_serial** (u64): the serial_id of the funding output in the *psbt*
|
2021-09-03 12:07:59 +02:00
|
|
|
|
2021-06-16 03:10:17 +02:00
|
|
|
[comment]: # (GENERATE-FROM-SCHEMA-END)
|
2020-09-03 20:01:45 +02:00
|
|
|
|
|
|
|
If the peer does not support `option_dual_fund`, this command
|
|
|
|
will return an error.
|
|
|
|
|
2021-06-08 23:50:41 +02:00
|
|
|
If you sent a *request_amt* and the peer supports `option_will_fund` and is
|
|
|
|
interested in leasing you liquidity in this channel, returns their updated
|
|
|
|
channel fee max (*channel_fee_proportional_basis*, *channel_fee_base_msat*),
|
|
|
|
updated rate card for the lease fee (*lease_fee_proportional_basis*,
|
|
|
|
*lease_fee_base_sat*) and their on-chain weight *weight_charge*, which will
|
|
|
|
be added to the lease fee at a rate of *funding_feerate* * *weight_charge*
|
|
|
|
/ 1000.
|
|
|
|
|
2020-09-03 20:01:45 +02:00
|
|
|
On error the returned object will contain `code` and `message` properties,
|
|
|
|
with `code` being one of the following:
|
|
|
|
|
|
|
|
- -32602: If the given parameters are wrong.
|
|
|
|
- -1: Catchall nonspecific error.
|
|
|
|
- 300: The amount exceeded the maximum configured funding amount.
|
|
|
|
- 301: The provided PSBT cannot afford the funding amount.
|
|
|
|
- 304: Still syncing with bitcoin network
|
|
|
|
- 305: Peer is not connected.
|
|
|
|
- 306: Unknown peer id.
|
|
|
|
- 309: PSBT missing required fields
|
|
|
|
- 310: v2 channel open protocol not supported by peer
|
2021-03-11 05:32:48 +01:00
|
|
|
- 312: Channel in an invalid state
|
2020-09-03 20:01:45 +02:00
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
|
|
|
|
lightning-openchannel\_update(7), lightning-openchannel\_signed(7),
|
2021-03-09 22:14:08 +01:00
|
|
|
lightning-openchannel\_abort(7), lightning-openchannel\_bump(7),
|
|
|
|
lightning-fundchannel\_start(7),
|
2021-03-11 05:33:47 +01:00
|
|
|
lightning-fundchannel\_complete(7), lightning-fundchannel(7),
|
|
|
|
lightning-fundpsbt(7), lightning-utxopsbt(7), lightning-multifundchannel(7)
|
2020-09-03 20:01:45 +02:00
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
------
|
|
|
|
|
|
|
|
@niftynei <<niftynei@gmail.com>> is mainly responsible.
|
|
|
|
|
|
|
|
RESOURCES
|
|
|
|
---------
|
|
|
|
|
|
|
|
Main web site: <https://github.com/ElementsProject/lightning>
|
2021-11-04 15:15:51 +01:00
|
|
|
[comment]: # ( SHA256STAMP:bd405699ff27104ccc97dec81be9de1e7459c91333d78616268e4e9c198ee5af)
|