2019-08-31 14:30:56 +02:00
|
|
|
lightning-listpeers -- Command returning data on connected lightning nodes
|
|
|
|
==========================================================================
|
2019-08-10 01:54:18 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
|
|
|
|
**listpeers** \[*id*\] \[*level*\]
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The **listpeers** RPC command returns data on nodes that are connected
|
|
|
|
or are not connected but have open channels with this node.
|
|
|
|
|
|
|
|
Once a connection to another lightning node has been established, using
|
|
|
|
the **connect** command, data on the node can be returned using
|
|
|
|
**listpeers** and the *id* that was used with the **connect** command.
|
|
|
|
|
|
|
|
If no *id* is supplied, then data on all lightning nodes that are
|
|
|
|
connected, or not connected but have open channels with this node, are
|
|
|
|
returned.
|
|
|
|
|
|
|
|
Supplying *id* will filter the results to only return data on a node
|
|
|
|
with a matching *id*, if one exists.
|
|
|
|
|
|
|
|
Supplying *level* will show log entries related to that peer at the
|
|
|
|
given log level. Valid log levels are "io", "debug", "info", and
|
|
|
|
"unusual".
|
|
|
|
|
|
|
|
If a channel is open with a node and the connection has been lost, then
|
|
|
|
the node will still appear in the output of the command and the value of
|
|
|
|
the *connected* attribute of the node will be "false".
|
|
|
|
|
|
|
|
The channel will remain open for a set blocktime, after which if the
|
|
|
|
connection has not been re-established, the channel will close and the
|
|
|
|
node will no longer appear in the command output.
|
|
|
|
|
|
|
|
RETURN VALUE
|
|
|
|
------------
|
|
|
|
|
|
|
|
On success, an object with a "peers" key is returned containing a list
|
|
|
|
of 0 or more objects.
|
|
|
|
|
|
|
|
Each object in the list contains the following data:
|
|
|
|
- *id* : The unique id of the peer
|
|
|
|
- *connected* : A boolean value showing the connection status
|
|
|
|
- *netaddr* : A list of network addresses the node is listening on
|
2019-10-11 04:52:04 +02:00
|
|
|
- *features* : Bit flags showing supported features (BOLT \#9)
|
2020-02-10 04:57:22 +01:00
|
|
|
- *channels* : An array of objects describing channels with the peer.
|
2019-08-10 01:54:18 +02:00
|
|
|
- *log* : Only present if *level* is set. List logs related to the
|
|
|
|
peer at the specified *level*
|
|
|
|
|
|
|
|
If *id* is supplied and no matching nodes are found, a "peers" object
|
|
|
|
with an empty list is returned.
|
|
|
|
|
2020-02-10 04:57:22 +01:00
|
|
|
The objects in the *channels* array will have at least these fields:
|
|
|
|
|
|
|
|
* *state*: Any of these strings:
|
|
|
|
* `"OPENINGD"`: The channel funding protocol with the peer is ongoing
|
|
|
|
and both sides are negotiating parameters.
|
|
|
|
* `"CHANNELD_AWAITING_LOCKIN"`: The peer and you have agreed on channel
|
|
|
|
parameters and are just waiting for the channel funding transaction to
|
|
|
|
be confirmed deeply.
|
|
|
|
Both you and the peer must acknowledge the channel funding transaction
|
|
|
|
to be confirmed deeply before entering the next state.
|
|
|
|
* `"CHANNELD_NORMAL"`: The channel can be used for normal payments.
|
|
|
|
* `"CHANNELD_SHUTTING_DOWN"`: A mutual close was requested (by you or
|
|
|
|
peer) and both of you are waiting for HTLCs in-flight to be either
|
|
|
|
failed or succeeded.
|
|
|
|
The channel can no longer be used for normal payments and forwarding.
|
|
|
|
Mutual close will proceed only once all HTLCs in the channel have
|
|
|
|
either been fulfilled or failed.
|
|
|
|
* `"CLOSINGD_SIGEXCHANGE"`: You and the peer are negotiating the mutual
|
|
|
|
close onchain fee.
|
|
|
|
* `"CLOSINGD_COMPLETE"`: You and the peer have agreed on the mutual close
|
|
|
|
onchain fee and are awaiting the mutual close getting confirmed deeply.
|
|
|
|
* `"AWAITING_UNILATERAL"`: You initiated a unilateral close, and are now
|
|
|
|
waiting for the peer-selected unilateral close timeout to complete.
|
|
|
|
* `"FUNDING_SPEND_SEEN"`: You saw the funding transaction getting
|
|
|
|
spent (usually the peer initiated a unilateral close) and will now
|
|
|
|
determine what exactly happened (i.e. if it was a theft attempt).
|
|
|
|
* `"ONCHAIN"`: You saw the funding transaction getting spent and now
|
|
|
|
know what happened (i.e. if it was a proper unilateral close by the
|
|
|
|
peer, or a theft attempt).
|
|
|
|
* `"CLOSED"`: The channel closure has been confirmed deeply.
|
|
|
|
The channel will eventually be removed from this array.
|
2020-10-28 11:46:25 +01:00
|
|
|
* *state_changes*: An array of objects describing prior state change events.
|
|
|
|
* *opener*: A string `"local"` or `"remote`" describing which side opened this
|
|
|
|
channel.
|
|
|
|
* *closer*: A string `"local"` or `"remote`" describing which side
|
|
|
|
closed this channel or `null` if the channel is not (being) closed yet.
|
2020-02-10 04:57:22 +01:00
|
|
|
* *status*: An array of strings containing the most important log messages
|
|
|
|
relevant to this channel.
|
|
|
|
Also known as the "billboard".
|
|
|
|
* *owner*: A string describing which particular sub-daemon of `lightningd`
|
|
|
|
currently is responsible for this channel.
|
|
|
|
One of: `"lightning_openingd"`, `"lightning_channeld"`,
|
|
|
|
`"lightning_closingd"`, `"lightning_onchaind"`.
|
|
|
|
* *to\_us\_msat*: A string describing how much of the funds is owned by us;
|
|
|
|
a number followed by a string unit.
|
|
|
|
* *total\_msat*: A string describing the total capacity of the channel;
|
|
|
|
a number followed by a string unit.
|
2020-12-02 15:23:37 +01:00
|
|
|
* *fee_base_msat*: The fixed routing fee we charge for forwards going out over
|
|
|
|
this channel, regardless of payment size.
|
|
|
|
* *fee_proportional_millionths*: The proportional routing fees in ppm (parts-
|
|
|
|
per-millionths) we charge for forwards going out over this channel.
|
2020-08-21 03:57:20 +02:00
|
|
|
* *features*: An array of feature names supported by this channel.
|
2020-02-10 04:57:22 +01:00
|
|
|
|
|
|
|
These fields may exist if the channel has gotten beyond the `"OPENINGD"`
|
|
|
|
state, or in various circumstances:
|
|
|
|
|
|
|
|
* *short\_channel\_id*: A string of the short channel ID for the channel;
|
|
|
|
Format is `"BBBBxTTTxOOO"`, where `"BBBB"` is the numeric block height
|
|
|
|
at which the funding transaction was confirmed, `"TTT"` is the numeric
|
|
|
|
funding transaction index within that block, and `"OOO"` is the
|
|
|
|
numeric output index of the transaction output that actually anchors
|
|
|
|
this channel.
|
|
|
|
* *direction*: The channel-direction we own, as per BOLT \#7.
|
|
|
|
We own channel-direction 0 if our node ID is "less than" the peer node ID
|
|
|
|
in a lexicographical ordering of our node IDs, otherwise we own
|
|
|
|
channel-direction 1.
|
|
|
|
Our `channel_update` will use this *direction*.
|
|
|
|
* *channel\_id*: The full channel ID of the channel;
|
|
|
|
the funding transaction ID XORed with the output number.
|
|
|
|
* *funding\_txid*: The funding transaction ID of the channel.
|
|
|
|
* *close\_to*: The raw `scriptPubKey` that was indicated in the starting
|
|
|
|
**fundchannel\_start** command and accepted by the peer.
|
|
|
|
If the `scriptPubKey` encodes a standardized address, an additional
|
|
|
|
*close\_to\_addr* field will be present with the standardized address.
|
|
|
|
* *private*: A boolean, true if the channel is unpublished, false if the
|
|
|
|
channel is published.
|
|
|
|
* *funding\_msat*: An object, whose field names are the node
|
|
|
|
IDs involved in the channel, and whose values are strings (numbers with
|
|
|
|
a unit suffix) indicating how much that node originally contributed in
|
|
|
|
opening the channel.
|
|
|
|
* *min\_to\_us\_msat*: A string describing the historic point at which
|
|
|
|
we owned the least amount of funds in this channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
If the peer were to succesfully steal from us, this is the amount we
|
|
|
|
would still retain.
|
|
|
|
* *max\_to\_us\_msat*: A string describing the historic point at which
|
|
|
|
we owned the most amount of funds in this channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
If we were to successfully steal from the peer, this is the amount we
|
|
|
|
could potentially get.
|
|
|
|
* *dust\_limit\_msat*: A string describing an amount;
|
|
|
|
if an HTLC or the amount wholly-owned by one node is at or below this
|
|
|
|
amount, it will be considered "dusty" and will not appear in a close
|
|
|
|
transaction, and will be donated to miners as fee;
|
|
|
|
a number followed by a string unit.
|
|
|
|
* *max\_total\_htlc\_in\_msat*: A string describing an amount;
|
|
|
|
the sum of all HTLCs in the channel cannot exceed this amount;
|
|
|
|
a number followed by a string unit.
|
|
|
|
* *their\_reserve\_msat*: A string describing the minimum amount that
|
|
|
|
the peer must keep in the channel when it attempts to send out;
|
|
|
|
if it has less than this in the channel, it cannot send to us on
|
|
|
|
that channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
We impose this on them, default is 1% of the total channel capacity.
|
|
|
|
* *our\_reserve\_msat*: A string describing the minimum amount that
|
|
|
|
you must keep in the channel when you attempt to send out;
|
|
|
|
if you have less than this in the channel, you cannot send out
|
|
|
|
via this channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
The peer imposes this on us, default is 1% of the total channel capacity.
|
2020-03-05 14:28:08 +01:00
|
|
|
* *spendable\_msat* and *receivable\_msat*: A string describing an
|
|
|
|
***estimate*** of how much we can send or receive over this channel in a
|
|
|
|
single payment (or payment-part for multi-part payments);
|
2020-02-10 04:57:22 +01:00
|
|
|
a number followed by a string unit.
|
|
|
|
This is an ***estimate***, which can be wrong because adding HTLCs requires
|
|
|
|
an increase in fees paid to onchain miners, and onchain fees change
|
|
|
|
dynamically according to onchain activity.
|
2020-03-05 14:28:08 +01:00
|
|
|
For a sufficiently-large channel, this can be limited by the rules imposed
|
|
|
|
under certain blockchains;
|
2020-02-17 00:44:47 +01:00
|
|
|
for example, individual Bitcoin mainnet payment-parts cannot exceed
|
|
|
|
42.94967295 mBTC.
|
2020-02-10 04:57:22 +01:00
|
|
|
* *minimum\_htlc\_in\_msat*: A string describing the minimum amount that
|
|
|
|
an HTLC must have before we accept it.
|
|
|
|
* *their\_to\_self\_delay*: The number of blocks that the peer must wait
|
|
|
|
to claim their funds, if they close unilaterally.
|
|
|
|
* *our\_to\_self\_delay*: The number of blocks that you must wait to claim
|
|
|
|
your funds, if you close unilaterally.
|
|
|
|
* *max\_accepted\_htlcs*: The maximum number of HTLCs you will accept on
|
|
|
|
this channel.
|
|
|
|
* *in\_payments_offered*: The number of incoming HTLCs offered over this
|
|
|
|
channel.
|
|
|
|
* *in\_offered\_msat*: A string describing the total amount of all incoming
|
|
|
|
HTLCs offered over this channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
* *in\_payments\_fulfilled*: The number of incoming HTLCs offered *and
|
|
|
|
successfully claimed* over this channel.
|
|
|
|
* *in\_fulfilled\_msat*: A string describing the total amount of all
|
|
|
|
incoming HTLCs offered *and successfully claimed* over this channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
* *out\_payments\_offered*: The number of outgoing HTLCs offered over
|
|
|
|
this channel.
|
|
|
|
* *out\_offered\_msat*: A string describing the total amount of all
|
|
|
|
outgoing HTLCs offered over this channel;
|
|
|
|
a number followed by a string unit.
|
|
|
|
* *out\_payments\_fulfilled*: The number of outgoing HTLCs offered *and
|
|
|
|
successfully claimed* over this channel.
|
|
|
|
* *out\_fulfilled\_msat*: A string describing the total amount of all
|
|
|
|
outgoing HTLCs offered *and successfully claimed* over this channel;
|
|
|
|
a number followed by a string unit.
|
2021-03-03 04:16:57 +01:00
|
|
|
* *scratch_txid*: The txid of the latest transaction (what we would sign and
|
|
|
|
send to chain if the channel were to fail now).
|
|
|
|
* *last_tx_fee*: The fee on that latest transaction.
|
|
|
|
* *feerate*: An object containing the latest feerate as both *perkw* and *perkb*.
|
2020-02-10 04:57:22 +01:00
|
|
|
* *htlcs*: An array of objects describing the HTLCs currently in-flight
|
|
|
|
in the channel.
|
|
|
|
|
|
|
|
Objects in the *htlcs* array will contain these fields:
|
|
|
|
|
|
|
|
* *direction*: Either the string `"out"` or `"in"`, whether it is an
|
|
|
|
outgoing or incoming HTLC.
|
|
|
|
* *id*: A numeric ID uniquely identifying this HTLC.
|
|
|
|
* *amount\_msat*: The value of the HTLC.
|
|
|
|
* *expiry*: The blockheight at which the HTLC will be forced to return
|
|
|
|
to its offerer: an `"in"` HTLC will be returned to the peer, an
|
|
|
|
`"out"` HTLC will be returned to you.
|
|
|
|
**NOTE** If the *expiry* of any outgoing HTLC will arrive in the next
|
|
|
|
block, `lightningd`(8) will automatically unilaterally close the
|
|
|
|
channel in order to enforce the timeout onchain.
|
|
|
|
* *payment\_hash*: The payment hash, whose preimage must be revealed to
|
|
|
|
successfully claim this HTLC.
|
|
|
|
* *state*: A string describing whether the HTLC has been communicated to
|
2020-10-28 11:46:25 +01:00
|
|
|
or from the peer, whether it has been signed in a new commitment, whether
|
2020-02-10 04:57:22 +01:00
|
|
|
the previous commitment (that does not contain it) has been revoked, as
|
|
|
|
well as when the HTLC is fulfilled or failed offchain.
|
|
|
|
* *local\_trimmed*: A boolean, existing and `true` if the HTLC is not
|
|
|
|
actually instantiated as an output (i.e. "trimmed") on the commitment
|
|
|
|
transaction (and will not be instantiated on a unilateral close).
|
|
|
|
Generally true if the HTLC is below the *dust\_limit\_msat* for the
|
|
|
|
channel.
|
|
|
|
|
2020-01-07 17:59:24 +01:00
|
|
|
On error the returned object will contain `code` and `message` properties,
|
|
|
|
with `code` being one of the following:
|
2019-08-10 01:54:18 +02:00
|
|
|
|
2020-01-07 17:59:24 +01:00
|
|
|
- -32602: If the given parameters are wrong.
|
2019-08-10 01:54:18 +02:00
|
|
|
|
|
|
|
AUTHOR
|
|
|
|
------
|
|
|
|
|
|
|
|
Michael Hawkins <<michael.hawkins@protonmail.com>>.
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
|
2020-12-02 15:23:37 +01:00
|
|
|
lightning-connect(7), lightning-fundchannel\_start(7),
|
|
|
|
lightning-setchannelfee(7)
|
2019-08-10 01:54:18 +02:00
|
|
|
|
|
|
|
RESOURCES
|
|
|
|
---------
|
|
|
|
|
|
|
|
Main web site: <https://github.com/ElementsProject/lightning> Lightning
|
|
|
|
RFC site (BOLT \#9):
|
|
|
|
<https://github.com/lightningnetwork/lightning-rfc/blob/master/09-features.md>
|
2020-08-25 03:33:16 +02:00
|
|
|
|