mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-12 10:30:29 +01:00
lightningd: add listpeerchannels command
Changelog-Added: JSON-RPC: new command `listpeerchannels` now contains information on direct channels with our peers. Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
This commit is contained in:
parent
1d8b899551
commit
6fa904b4fb
7 changed files with 1403 additions and 0 deletions
|
@ -1070,6 +1070,16 @@ class LightningRpc(UnixDomainSocketRpc):
|
||||||
}
|
}
|
||||||
return self.call("listpeers", payload)
|
return self.call("listpeers", payload)
|
||||||
|
|
||||||
|
def listpeerchannels(self, peer_id=None):
|
||||||
|
"""
|
||||||
|
Show current peers channels, and if the {peer_id} is specified
|
||||||
|
all the channels for the peer are returned.
|
||||||
|
"""
|
||||||
|
payload = {
|
||||||
|
"id": peer_id,
|
||||||
|
}
|
||||||
|
return self.call("listpeerchannels", payload)
|
||||||
|
|
||||||
def listsendpays(self, bolt11=None, payment_hash=None, status=None):
|
def listsendpays(self, bolt11=None, payment_hash=None, status=None):
|
||||||
"""Show all sendpays results, or only for `bolt11` or `payment_hash`."""
|
"""Show all sendpays results, or only for `bolt11` or `payment_hash`."""
|
||||||
payload = {
|
payload = {
|
||||||
|
|
|
@ -58,6 +58,7 @@ MANPAGES := doc/lightning-cli.1 \
|
||||||
doc/lightning-listoffers.7 \
|
doc/lightning-listoffers.7 \
|
||||||
doc/lightning-listpays.7 \
|
doc/lightning-listpays.7 \
|
||||||
doc/lightning-listpeers.7 \
|
doc/lightning-listpeers.7 \
|
||||||
|
doc/lightning-listpeerchannels.7 \
|
||||||
doc/lightning-listsendpays.7 \
|
doc/lightning-listsendpays.7 \
|
||||||
doc/lightning-makesecret.7 \
|
doc/lightning-makesecret.7 \
|
||||||
doc/lightning-multifundchannel.7 \
|
doc/lightning-multifundchannel.7 \
|
||||||
|
|
|
@ -85,6 +85,7 @@ Core Lightning Documentation
|
||||||
lightning-listnodes <lightning-listnodes.7.md>
|
lightning-listnodes <lightning-listnodes.7.md>
|
||||||
lightning-listoffers <lightning-listoffers.7.md>
|
lightning-listoffers <lightning-listoffers.7.md>
|
||||||
lightning-listpays <lightning-listpays.7.md>
|
lightning-listpays <lightning-listpays.7.md>
|
||||||
|
lightning-listpeerchannels <lightning-listpeerchannels.7.md>
|
||||||
lightning-listpeers <lightning-listpeers.7.md>
|
lightning-listpeers <lightning-listpeers.7.md>
|
||||||
lightning-listsendpays <lightning-listsendpays.7.md>
|
lightning-listsendpays <lightning-listsendpays.7.md>
|
||||||
lightning-listtransactions <lightning-listtransactions.7.md>
|
lightning-listtransactions <lightning-listtransactions.7.md>
|
||||||
|
|
345
doc/lightning-listpeerchannels.7.md
Normal file
345
doc/lightning-listpeerchannels.7.md
Normal file
|
@ -0,0 +1,345 @@
|
||||||
|
lightning-listpeerchannels -- Command returning data on channels of connected lightning nodes
|
||||||
|
==========================================================================
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
--------
|
||||||
|
|
||||||
|
**listpeerchannels** \[*id*\]
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
-----------
|
||||||
|
|
||||||
|
The **listpeerchannels** RPC command returns data on channels of the network, with the possibility to filter the channels by node id.
|
||||||
|
|
||||||
|
If no *id* is supplied, then channel 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 channel data that match *id*,
|
||||||
|
if one exists.
|
||||||
|
|
||||||
|
RETURN VALUE
|
||||||
|
------------
|
||||||
|
|
||||||
|
[comment]: # (GENERATE-FROM-SCHEMA-START)
|
||||||
|
On success, an object containing **channels** is returned. It is an array of objects, where each object contains:
|
||||||
|
|
||||||
|
- **peer\_id** (pubkey): Node Public key
|
||||||
|
- **peer\_connected** (boolean): A boolean flag that is set to true if the peer is online
|
||||||
|
- **state** (string): the channel state, in particular "CHANNELD\_NORMAL" means the channel can be used normally (one of "OPENINGD", "CHANNELD\_AWAITING\_LOCKIN", "CHANNELD\_NORMAL", "CHANNELD\_SHUTTING\_DOWN", "CLOSINGD\_SIGEXCHANGE", "CLOSINGD\_COMPLETE", "AWAITING\_UNILATERAL", "FUNDING\_SPEND\_SEEN", "ONCHAIN", "DUALOPEND\_OPEN\_INIT", "DUALOPEND\_AWAITING\_LOCKIN")
|
||||||
|
- **opener** (string): Who initiated the channel (one of "local", "remote")
|
||||||
|
- **features** (array of strings):
|
||||||
|
- BOLT #9 features which apply to this channel (one of "option\_static\_remotekey", "option\_anchor\_outputs", "option\_zeroconf")
|
||||||
|
- **scratch\_txid** (txid, optional): The txid we would use if we went onchain now
|
||||||
|
- **feerate** (object, optional): Feerates for the current tx:
|
||||||
|
- **perkw** (u32): Feerate per 1000 weight (i.e kSipa)
|
||||||
|
- **perkb** (u32): Feerate per 1000 virtual bytes
|
||||||
|
- **owner** (string, optional): The current subdaemon controlling this connection
|
||||||
|
- **short\_channel\_id** (short\_channel\_id, optional): The short\_channel\_id (once locked in)
|
||||||
|
- **channel\_id** (hash, optional): The full channel\_id (always 64 characters)
|
||||||
|
- **funding\_txid** (txid, optional): ID of the funding transaction
|
||||||
|
- **funding\_outnum** (u32, optional): The 0-based output number of the funding transaction which opens the channel
|
||||||
|
- **initial\_feerate** (string, optional): For inflight opens, the first feerate used to initiate the channel open
|
||||||
|
- **last\_feerate** (string, optional): For inflight opens, the most recent feerate used on the channel open
|
||||||
|
- **next\_feerate** (string, optional): For inflight opens, the next feerate we'll use for the channel open
|
||||||
|
- **next\_fee\_step** (u32, optional): For inflight opens, the next feerate step we'll use for the channel open
|
||||||
|
- **inflight** (array of objects, optional): Current candidate funding transactions (only for dual-funding):
|
||||||
|
- **funding\_txid** (txid): ID of the funding transaction
|
||||||
|
- **funding\_outnum** (u32): The 0-based output number of the funding transaction which opens the channel
|
||||||
|
- **feerate** (string): The feerate for this funding transaction in per-1000-weight, with "kpw" appended
|
||||||
|
- **total\_funding\_msat** (msat): total amount in the channel
|
||||||
|
- **our\_funding\_msat** (msat): amount we have in the channel
|
||||||
|
- **scratch\_txid** (txid): The commitment transaction txid we would use if we went onchain now
|
||||||
|
- **close\_to** (hex, optional): scriptPubkey which we have to close to if we mutual close
|
||||||
|
- **private** (boolean, optional): if False, we will not announce this channel
|
||||||
|
- **closer** (string, optional): Who initiated the channel close (one of "local", "remote")
|
||||||
|
- **funding** (object, optional):
|
||||||
|
- **local\_funds\_msat** (msat): Amount of channel we funded
|
||||||
|
- **remote\_funds\_msat** (msat): Amount of channel they funded
|
||||||
|
- **local\_msat** (msat, optional): Amount of channel we funded (deprecated)
|
||||||
|
- **remote\_msat** (msat, optional): Amount of channel they funded (deprecated)
|
||||||
|
- **pushed\_msat** (msat, optional): Amount pushed from opener to peer
|
||||||
|
- **fee\_paid\_msat** (msat, optional): Amount we paid peer at open
|
||||||
|
- **fee\_rcvd\_msat** (msat, optional): Amount we were paid by peer at open
|
||||||
|
- **to\_us\_msat** (msat, optional): how much of channel is owed to us
|
||||||
|
- **min\_to\_us\_msat** (msat, optional): least amount owed to us ever
|
||||||
|
- **max\_to\_us\_msat** (msat, optional): most amount owed to us ever
|
||||||
|
- **total\_msat** (msat, optional): total amount in the channel
|
||||||
|
- **fee\_base\_msat** (msat, optional): amount we charge to use the channel
|
||||||
|
- **fee\_proportional\_millionths** (u32, optional): amount we charge to use the channel in parts-per-million
|
||||||
|
- **dust\_limit\_msat** (msat, optional): minimum amount for an output on the channel transactions
|
||||||
|
- **max\_total\_htlc\_in\_msat** (msat, optional): max amount accept in a single payment
|
||||||
|
- **their\_reserve\_msat** (msat, optional): minimum we insist they keep in channel
|
||||||
|
- **our\_reserve\_msat** (msat, optional): minimum they insist we keep in channel
|
||||||
|
- **spendable\_msat** (msat, optional): total we could send through channel
|
||||||
|
- **receivable\_msat** (msat, optional): total peer could send through channel
|
||||||
|
- **minimum\_htlc\_in\_msat** (msat, optional): the minimum amount HTLC we accept
|
||||||
|
- **minimum\_htlc\_out\_msat** (msat, optional): the minimum amount HTLC we will send
|
||||||
|
- **maximum\_htlc\_out\_msat** (msat, optional): the maximum amount HTLC we will send
|
||||||
|
- **their\_to\_self\_delay** (u32, optional): the number of blocks before they can take their funds if they unilateral close
|
||||||
|
- **our\_to\_self\_delay** (u32, optional): the number of blocks before we can take our funds if we unilateral close
|
||||||
|
- **max\_accepted\_htlcs** (u32, optional): Maximum number of incoming HTLC we will accept at once
|
||||||
|
- **alias** (object, optional):
|
||||||
|
- **local** (short\_channel\_id, optional): An alias assigned by this node to this channel, used for outgoing payments
|
||||||
|
- **remote** (short\_channel\_id, optional): An alias assigned by the remote node to this channel, usable in routehints and invoices
|
||||||
|
- **state\_changes** (array of objects, optional): Prior state changes:
|
||||||
|
- **timestamp** (string): UTC timestamp of form YYYY-mm-ddTHH:MM:SS.%03dZ
|
||||||
|
- **old\_state** (string): Previous state (one of "OPENINGD", "CHANNELD\_AWAITING\_LOCKIN", "CHANNELD\_NORMAL", "CHANNELD\_SHUTTING\_DOWN", "CLOSINGD\_SIGEXCHANGE", "CLOSINGD\_COMPLETE", "AWAITING\_UNILATERAL", "FUNDING\_SPEND\_SEEN", "ONCHAIN", "DUALOPEND\_OPEN\_INIT", "DUALOPEND\_AWAITING\_LOCKIN")
|
||||||
|
- **new\_state** (string): New state (one of "OPENINGD", "CHANNELD\_AWAITING\_LOCKIN", "CHANNELD\_NORMAL", "CHANNELD\_SHUTTING\_DOWN", "CLOSINGD\_SIGEXCHANGE", "CLOSINGD\_COMPLETE", "AWAITING\_UNILATERAL", "FUNDING\_SPEND\_SEEN", "ONCHAIN", "DUALOPEND\_OPEN\_INIT", "DUALOPEND\_AWAITING\_LOCKIN")
|
||||||
|
- **cause** (string): What caused the change (one of "unknown", "local", "user", "remote", "protocol", "onchain")
|
||||||
|
- **message** (string): Human-readable explanation
|
||||||
|
- **status** (array of strings, optional):
|
||||||
|
- Billboard log of significant changes
|
||||||
|
- **in\_payments\_offered** (u64, optional): Number of incoming payment attempts
|
||||||
|
- **in\_offered\_msat** (msat, optional): Total amount of incoming payment attempts
|
||||||
|
- **in\_payments\_fulfilled** (u64, optional): Number of successful incoming payment attempts
|
||||||
|
- **in\_fulfilled\_msat** (msat, optional): Total amount of successful incoming payment attempts
|
||||||
|
- **out\_payments\_offered** (u64, optional): Number of outgoing payment attempts
|
||||||
|
- **out\_offered\_msat** (msat, optional): Total amount of outgoing payment attempts
|
||||||
|
- **out\_payments\_fulfilled** (u64, optional): Number of successful outgoing payment attempts
|
||||||
|
- **out\_fulfilled\_msat** (msat, optional): Total amount of successful outgoing payment attempts
|
||||||
|
- **htlcs** (array of objects, optional): current HTLCs in this channel:
|
||||||
|
- **direction** (string): Whether it came from peer, or is going to peer (one of "in", "out")
|
||||||
|
- **id** (u64): Unique ID for this htlc on this channel in this direction
|
||||||
|
- **amount\_msat** (msat): Amount send/received for this HTLC
|
||||||
|
- **expiry** (u32): Block this HTLC expires at
|
||||||
|
- **payment\_hash** (hash): the hash of the payment\_preimage which will prove payment (always 64 characters)
|
||||||
|
- **local\_trimmed** (boolean, optional): if this is too small to enforce onchain (always *true*)
|
||||||
|
- **status** (string, optional): set if this HTLC is currently waiting on a hook (and shows what plugin)
|
||||||
|
|
||||||
|
If **direction** is "out":
|
||||||
|
|
||||||
|
- **state** (string): Status of the HTLC (one of "SENT\_ADD\_HTLC", "SENT\_ADD\_COMMIT", "RCVD\_ADD\_REVOCATION", "RCVD\_ADD\_ACK\_COMMIT", "SENT\_ADD\_ACK\_REVOCATION", "RCVD\_REMOVE\_HTLC", "RCVD\_REMOVE\_COMMIT", "SENT\_REMOVE\_REVOCATION", "SENT\_REMOVE\_ACK\_COMMIT", "RCVD\_REMOVE\_ACK\_REVOCATION")
|
||||||
|
|
||||||
|
If **direction** is "in":
|
||||||
|
|
||||||
|
- **state** (string): Status of the HTLC (one of "RCVD\_ADD\_HTLC", "RCVD\_ADD\_COMMIT", "SENT\_ADD\_REVOCATION", "SENT\_ADD\_ACK\_COMMIT", "RCVD\_ADD\_ACK\_REVOCATION", "SENT\_REMOVE\_HTLC", "SENT\_REMOVE\_COMMIT", "RCVD\_REMOVE\_REVOCATION", "RCVD\_REMOVE\_ACK\_COMMIT", "SENT\_REMOVE\_ACK\_REVOCATION")
|
||||||
|
|
||||||
|
If **close\_to** is present:
|
||||||
|
|
||||||
|
- **close\_to\_addr** (string, optional): The bitcoin address we will close to
|
||||||
|
|
||||||
|
If **scratch\_txid** is present:
|
||||||
|
|
||||||
|
- **last\_tx\_fee\_msat** (msat): fee attached to this the current tx
|
||||||
|
|
||||||
|
If **short\_channel\_id** is present:
|
||||||
|
|
||||||
|
- **direction** (u32): 0 if we're the lesser node\_id, 1 if we're the greater
|
||||||
|
|
||||||
|
If **inflight** is present:
|
||||||
|
|
||||||
|
- **initial\_feerate** (string): The feerate for the initial funding transaction in per-1000-weight, with "kpw" appended
|
||||||
|
- **last\_feerate** (string): The feerate for the latest funding transaction in per-1000-weight, with "kpw" appended
|
||||||
|
- **next\_feerate** (string): The minimum feerate for the next funding transaction in per-1000-weight, with "kpw" appended
|
||||||
|
|
||||||
|
[comment]: # (GENERATE-FROM-SCHEMA-END)
|
||||||
|
|
||||||
|
On success, an object with a "channels" key is returned containing a list
|
||||||
|
of 0 or more objects. If *id* and/or *status* are supplied and no matching
|
||||||
|
nodes are found, a "channels" object with an empty list is returned.
|
||||||
|
|
||||||
|
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.
|
||||||
|
* *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.
|
||||||
|
* *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.
|
||||||
|
* *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.
|
||||||
|
* *features*: An array of feature names supported by this channel.
|
||||||
|
|
||||||
|
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.
|
||||||
|
* *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);
|
||||||
|
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.
|
||||||
|
For a sufficiently-large channel, this can be limited by the rules imposed
|
||||||
|
under certain blockchains;
|
||||||
|
for example, individual Bitcoin mainnet payment-parts cannot exceed
|
||||||
|
42.94967295 mBTC.
|
||||||
|
* *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.
|
||||||
|
* *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*.
|
||||||
|
* *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
|
||||||
|
or from the peer, whether it has been signed in a new commitment, whether
|
||||||
|
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.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
AUTHOR
|
||||||
|
------
|
||||||
|
|
||||||
|
Michael Hawkins <<michael.hawkins@protonmail.com>>.
|
||||||
|
|
||||||
|
SEE ALSO
|
||||||
|
--------
|
||||||
|
|
||||||
|
lightning-connect(7), lightning-fundchannel\_start(7),
|
||||||
|
lightning-setchannelfee(7)
|
||||||
|
|
||||||
|
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>
|
||||||
|
|
||||||
|
[comment]: # ( SHA256STAMP:adc1f36b764f1d98ba6a34b63f459a19db15fc94e37678806a1eb858a2166167)
|
12
doc/schemas/listpeerchannels.request.json
Normal file
12
doc/schemas/listpeerchannels.request.json
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"type": "object",
|
||||||
|
"required": [],
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"id": {
|
||||||
|
"type": "pubkey",
|
||||||
|
"description": "If supplied, limits the channels to just the peer with the given ID, if it exists."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
980
doc/schemas/listpeerchannels.schema.json
Normal file
980
doc/schemas/listpeerchannels.schema.json
Normal file
|
@ -0,0 +1,980 @@
|
||||||
|
{
|
||||||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"channels"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"channels": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": true,
|
||||||
|
"required": [
|
||||||
|
"state",
|
||||||
|
"opener",
|
||||||
|
"features",
|
||||||
|
"peer_connected",
|
||||||
|
"peer_id"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"peer_id": {
|
||||||
|
"type": "pubkey",
|
||||||
|
"description": "Node Public key"
|
||||||
|
},
|
||||||
|
"peer_connected": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "A boolean flag that is set to true if the peer is online"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"OPENINGD",
|
||||||
|
"CHANNELD_AWAITING_LOCKIN",
|
||||||
|
"CHANNELD_NORMAL",
|
||||||
|
"CHANNELD_SHUTTING_DOWN",
|
||||||
|
"CLOSINGD_SIGEXCHANGE",
|
||||||
|
"CLOSINGD_COMPLETE",
|
||||||
|
"AWAITING_UNILATERAL",
|
||||||
|
"FUNDING_SPEND_SEEN",
|
||||||
|
"ONCHAIN",
|
||||||
|
"DUALOPEND_OPEN_INIT",
|
||||||
|
"DUALOPEND_AWAITING_LOCKIN"
|
||||||
|
],
|
||||||
|
"description": "the channel state, in particular \"CHANNELD_NORMAL\" means the channel can be used normally"
|
||||||
|
},
|
||||||
|
"scratch_txid": {
|
||||||
|
"type": "txid",
|
||||||
|
"description": "The txid we would use if we went onchain now"
|
||||||
|
},
|
||||||
|
"feerate": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "Feerates for the current tx",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"perkw",
|
||||||
|
"perkb"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"perkw": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "Feerate per 1000 weight (i.e kSipa)"
|
||||||
|
},
|
||||||
|
"perkb": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "Feerate per 1000 virtual bytes"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"owner": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The current subdaemon controlling this connection"
|
||||||
|
},
|
||||||
|
"short_channel_id": {
|
||||||
|
"type": "short_channel_id",
|
||||||
|
"description": "The short_channel_id (once locked in)"
|
||||||
|
},
|
||||||
|
"channel_id": {
|
||||||
|
"type": "hash",
|
||||||
|
"description": "The full channel_id",
|
||||||
|
"minLength": 64,
|
||||||
|
"maxLength": 64
|
||||||
|
},
|
||||||
|
"funding_txid": {
|
||||||
|
"type": "txid",
|
||||||
|
"description": "ID of the funding transaction"
|
||||||
|
},
|
||||||
|
"funding_outnum": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "The 0-based output number of the funding transaction which opens the channel"
|
||||||
|
},
|
||||||
|
"initial_feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "For inflight opens, the first feerate used to initiate the channel open"
|
||||||
|
},
|
||||||
|
"last_feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "For inflight opens, the most recent feerate used on the channel open"
|
||||||
|
},
|
||||||
|
"next_feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "For inflight opens, the next feerate we'll use for the channel open"
|
||||||
|
},
|
||||||
|
"next_fee_step": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "For inflight opens, the next feerate step we'll use for the channel open"
|
||||||
|
},
|
||||||
|
"inflight": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "Current candidate funding transactions (only for dual-funding)",
|
||||||
|
"items": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"funding_txid",
|
||||||
|
"funding_outnum",
|
||||||
|
"feerate",
|
||||||
|
"total_funding_msat",
|
||||||
|
"our_funding_msat",
|
||||||
|
"scratch_txid"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"funding_txid": {
|
||||||
|
"type": "txid",
|
||||||
|
"description": "ID of the funding transaction"
|
||||||
|
},
|
||||||
|
"funding_outnum": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "The 0-based output number of the funding transaction which opens the channel"
|
||||||
|
},
|
||||||
|
"feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The feerate for this funding transaction in per-1000-weight, with \"kpw\" appended"
|
||||||
|
},
|
||||||
|
"total_funding_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "total amount in the channel"
|
||||||
|
},
|
||||||
|
"our_funding_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "amount we have in the channel"
|
||||||
|
},
|
||||||
|
"scratch_txid": {
|
||||||
|
"type": "txid",
|
||||||
|
"description": "The commitment transaction txid we would use if we went onchain now"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"close_to": {
|
||||||
|
"type": "hex",
|
||||||
|
"description": "scriptPubkey which we have to close to if we mutual close"
|
||||||
|
},
|
||||||
|
"private": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "if False, we will not announce this channel"
|
||||||
|
},
|
||||||
|
"opener": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"local",
|
||||||
|
"remote"
|
||||||
|
],
|
||||||
|
"description": "Who initiated the channel"
|
||||||
|
},
|
||||||
|
"closer": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"local",
|
||||||
|
"remote"
|
||||||
|
],
|
||||||
|
"description": "Who initiated the channel close"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"option_static_remotekey",
|
||||||
|
"option_anchor_outputs",
|
||||||
|
"option_zeroconf"
|
||||||
|
],
|
||||||
|
"description": "BOLT #9 features which apply to this channel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"local_funds_msat",
|
||||||
|
"remote_funds_msat"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"local_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount of channel we funded (deprecated)"
|
||||||
|
},
|
||||||
|
"remote_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount of channel they funded (deprecated)"
|
||||||
|
},
|
||||||
|
"pushed_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount pushed from opener to peer"
|
||||||
|
},
|
||||||
|
"local_funds_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount of channel we funded"
|
||||||
|
},
|
||||||
|
"remote_funds_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount of channel they funded"
|
||||||
|
},
|
||||||
|
"fee_paid_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount we paid peer at open"
|
||||||
|
},
|
||||||
|
"fee_rcvd_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount we were paid by peer at open"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"to_us_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "how much of channel is owed to us"
|
||||||
|
},
|
||||||
|
"min_to_us_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "least amount owed to us ever"
|
||||||
|
},
|
||||||
|
"max_to_us_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "most amount owed to us ever"
|
||||||
|
},
|
||||||
|
"total_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "total amount in the channel"
|
||||||
|
},
|
||||||
|
"fee_base_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "amount we charge to use the channel"
|
||||||
|
},
|
||||||
|
"fee_proportional_millionths": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "amount we charge to use the channel in parts-per-million"
|
||||||
|
},
|
||||||
|
"dust_limit_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "minimum amount for an output on the channel transactions"
|
||||||
|
},
|
||||||
|
"max_total_htlc_in_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "max amount accept in a single payment"
|
||||||
|
},
|
||||||
|
"their_reserve_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "minimum we insist they keep in channel"
|
||||||
|
},
|
||||||
|
"our_reserve_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "minimum they insist we keep in channel"
|
||||||
|
},
|
||||||
|
"spendable_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "total we could send through channel"
|
||||||
|
},
|
||||||
|
"receivable_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "total peer could send through channel"
|
||||||
|
},
|
||||||
|
"minimum_htlc_in_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "the minimum amount HTLC we accept"
|
||||||
|
},
|
||||||
|
"minimum_htlc_out_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "the minimum amount HTLC we will send"
|
||||||
|
},
|
||||||
|
"maximum_htlc_out_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "the maximum amount HTLC we will send"
|
||||||
|
},
|
||||||
|
"their_to_self_delay": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "the number of blocks before they can take their funds if they unilateral close"
|
||||||
|
},
|
||||||
|
"our_to_self_delay": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "the number of blocks before we can take our funds if we unilateral close"
|
||||||
|
},
|
||||||
|
"max_accepted_htlcs": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "Maximum number of incoming HTLC we will accept at once"
|
||||||
|
},
|
||||||
|
"msatoshi_to_us": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"msatoshi_to_us_min": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"msatoshi_to_us_max": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"msatoshi_total": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"dust_limit_satoshis": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"max_htlc_value_in_flight_msat": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"our_channel_reserve_satoshis": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"their_channel_reserve_satoshis": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"spendable_msatoshi": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"receivable_msatoshi": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"htlc_minimum_msat": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"alias": {
|
||||||
|
"type": "object",
|
||||||
|
"required": [],
|
||||||
|
"properties": {
|
||||||
|
"local": {
|
||||||
|
"type": "short_channel_id",
|
||||||
|
"description": "An alias assigned by this node to this channel, used for outgoing payments"
|
||||||
|
},
|
||||||
|
"remote": {
|
||||||
|
"type": "short_channel_id",
|
||||||
|
"description": "An alias assigned by the remote node to this channel, usable in routehints and invoices"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"state_changes": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "Prior state changes",
|
||||||
|
"items": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"timestamp",
|
||||||
|
"old_state",
|
||||||
|
"new_state",
|
||||||
|
"cause",
|
||||||
|
"message"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"timestamp": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "UTC timestamp of form YYYY-mm-ddTHH:MM:SS.%03dZ"
|
||||||
|
},
|
||||||
|
"old_state": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"OPENINGD",
|
||||||
|
"CHANNELD_AWAITING_LOCKIN",
|
||||||
|
"CHANNELD_NORMAL",
|
||||||
|
"CHANNELD_SHUTTING_DOWN",
|
||||||
|
"CLOSINGD_SIGEXCHANGE",
|
||||||
|
"CLOSINGD_COMPLETE",
|
||||||
|
"AWAITING_UNILATERAL",
|
||||||
|
"FUNDING_SPEND_SEEN",
|
||||||
|
"ONCHAIN",
|
||||||
|
"DUALOPEND_OPEN_INIT",
|
||||||
|
"DUALOPEND_AWAITING_LOCKIN"
|
||||||
|
],
|
||||||
|
"description": "Previous state"
|
||||||
|
},
|
||||||
|
"new_state": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"OPENINGD",
|
||||||
|
"CHANNELD_AWAITING_LOCKIN",
|
||||||
|
"CHANNELD_NORMAL",
|
||||||
|
"CHANNELD_SHUTTING_DOWN",
|
||||||
|
"CLOSINGD_SIGEXCHANGE",
|
||||||
|
"CLOSINGD_COMPLETE",
|
||||||
|
"AWAITING_UNILATERAL",
|
||||||
|
"FUNDING_SPEND_SEEN",
|
||||||
|
"ONCHAIN",
|
||||||
|
"DUALOPEND_OPEN_INIT",
|
||||||
|
"DUALOPEND_AWAITING_LOCKIN"
|
||||||
|
],
|
||||||
|
"description": "New state"
|
||||||
|
},
|
||||||
|
"cause": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"unknown",
|
||||||
|
"local",
|
||||||
|
"user",
|
||||||
|
"remote",
|
||||||
|
"protocol",
|
||||||
|
"onchain"
|
||||||
|
],
|
||||||
|
"description": "What caused the change"
|
||||||
|
},
|
||||||
|
"message": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Human-readable explanation"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Billboard log of significant changes"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"in_payments_offered": {
|
||||||
|
"type": "u64",
|
||||||
|
"description": "Number of incoming payment attempts"
|
||||||
|
},
|
||||||
|
"in_offered_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Total amount of incoming payment attempts"
|
||||||
|
},
|
||||||
|
"in_msatoshi_offered": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"in_payments_fulfilled": {
|
||||||
|
"type": "u64",
|
||||||
|
"description": "Number of successful incoming payment attempts"
|
||||||
|
},
|
||||||
|
"in_fulfilled_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Total amount of successful incoming payment attempts"
|
||||||
|
},
|
||||||
|
"in_msatoshi_fulfilled": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"out_payments_offered": {
|
||||||
|
"type": "u64",
|
||||||
|
"description": "Number of outgoing payment attempts"
|
||||||
|
},
|
||||||
|
"out_offered_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Total amount of outgoing payment attempts"
|
||||||
|
},
|
||||||
|
"out_msatoshi_offered": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"out_payments_fulfilled": {
|
||||||
|
"type": "u64",
|
||||||
|
"description": "Number of successful outgoing payment attempts"
|
||||||
|
},
|
||||||
|
"out_fulfilled_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Total amount of successful outgoing payment attempts"
|
||||||
|
},
|
||||||
|
"out_msatoshi_fulfilled": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"htlcs": {
|
||||||
|
"type": "array",
|
||||||
|
"description": "current HTLCs in this channel",
|
||||||
|
"items": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": true,
|
||||||
|
"required": [
|
||||||
|
"direction",
|
||||||
|
"id",
|
||||||
|
"amount_msat",
|
||||||
|
"expiry",
|
||||||
|
"payment_hash",
|
||||||
|
"state"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"direction": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"in",
|
||||||
|
"out"
|
||||||
|
],
|
||||||
|
"description": "Whether it came from peer, or is going to peer"
|
||||||
|
},
|
||||||
|
"id": {
|
||||||
|
"type": "u64",
|
||||||
|
"description": "Unique ID for this htlc on this channel in this direction"
|
||||||
|
},
|
||||||
|
"amount_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "Amount send/received for this HTLC"
|
||||||
|
},
|
||||||
|
"msatoshi": {
|
||||||
|
"deprecated": true
|
||||||
|
},
|
||||||
|
"expiry": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "Block this HTLC expires at"
|
||||||
|
},
|
||||||
|
"payment_hash": {
|
||||||
|
"type": "hash",
|
||||||
|
"description": "the hash of the payment_preimage which will prove payment",
|
||||||
|
"maxLength": 64,
|
||||||
|
"minLength": 64
|
||||||
|
},
|
||||||
|
"local_trimmed": {
|
||||||
|
"type": "boolean",
|
||||||
|
"enum": [
|
||||||
|
true
|
||||||
|
],
|
||||||
|
"description": "if this is too small to enforce onchain"
|
||||||
|
},
|
||||||
|
"status": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "set if this HTLC is currently waiting on a hook (and shows what plugin)"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"properties": {
|
||||||
|
"direction": {
|
||||||
|
"enum": [
|
||||||
|
"out"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"then": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"state"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"direction": {},
|
||||||
|
"id": {},
|
||||||
|
"amount_msat": {},
|
||||||
|
"msatoshi": {},
|
||||||
|
"expiry": {},
|
||||||
|
"payment_hash": {},
|
||||||
|
"local_trimmed": {},
|
||||||
|
"status": {},
|
||||||
|
"alias": {},
|
||||||
|
"peer_id": {},
|
||||||
|
"peer_connected": {},
|
||||||
|
"state": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"SENT_ADD_HTLC",
|
||||||
|
"SENT_ADD_COMMIT",
|
||||||
|
"RCVD_ADD_REVOCATION",
|
||||||
|
"RCVD_ADD_ACK_COMMIT",
|
||||||
|
"SENT_ADD_ACK_REVOCATION",
|
||||||
|
"RCVD_REMOVE_HTLC",
|
||||||
|
"RCVD_REMOVE_COMMIT",
|
||||||
|
"SENT_REMOVE_REVOCATION",
|
||||||
|
"SENT_REMOVE_ACK_COMMIT",
|
||||||
|
"RCVD_REMOVE_ACK_REVOCATION"
|
||||||
|
],
|
||||||
|
"description": "Status of the HTLC"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"properties": {
|
||||||
|
"direction": {
|
||||||
|
"enum": [
|
||||||
|
"in"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"then": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"state"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"direction": {},
|
||||||
|
"id": {},
|
||||||
|
"amount_msat": {},
|
||||||
|
"msatoshi": {},
|
||||||
|
"expiry": {},
|
||||||
|
"payment_hash": {},
|
||||||
|
"local_trimmed": {},
|
||||||
|
"status": {},
|
||||||
|
"peer_id": {},
|
||||||
|
"peer_connected": {},
|
||||||
|
"state": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": [
|
||||||
|
"RCVD_ADD_HTLC",
|
||||||
|
"RCVD_ADD_COMMIT",
|
||||||
|
"SENT_ADD_REVOCATION",
|
||||||
|
"SENT_ADD_ACK_COMMIT",
|
||||||
|
"RCVD_ADD_ACK_REVOCATION",
|
||||||
|
"SENT_REMOVE_HTLC",
|
||||||
|
"SENT_REMOVE_COMMIT",
|
||||||
|
"RCVD_REMOVE_REVOCATION",
|
||||||
|
"RCVD_REMOVE_ACK_COMMIT",
|
||||||
|
"SENT_REMOVE_ACK_REVOCATION"
|
||||||
|
],
|
||||||
|
"description": "Status of the HTLC"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"allOf": [
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"required": [
|
||||||
|
"close_to"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [],
|
||||||
|
"properties": {
|
||||||
|
"state": {},
|
||||||
|
"peer_id": {},
|
||||||
|
"peer_connected": {},
|
||||||
|
"scratch_txid": {},
|
||||||
|
"feerate": {},
|
||||||
|
"owner": {},
|
||||||
|
"short_channel_id": {},
|
||||||
|
"channel_id": {},
|
||||||
|
"funding_txid": {},
|
||||||
|
"funding_outnum": {},
|
||||||
|
"close_to": {},
|
||||||
|
"private": {},
|
||||||
|
"alias": {},
|
||||||
|
"opener": {},
|
||||||
|
"closer": {},
|
||||||
|
"features": {},
|
||||||
|
"funding": {},
|
||||||
|
"to_us_msat": {},
|
||||||
|
"min_to_us_msat": {},
|
||||||
|
"max_to_us_msat": {},
|
||||||
|
"total_msat": {},
|
||||||
|
"fee_base_msat": {},
|
||||||
|
"fee_proportional_millionths": {},
|
||||||
|
"dust_limit_msat": {},
|
||||||
|
"max_total_htlc_in_msat": {},
|
||||||
|
"their_reserve_msat": {},
|
||||||
|
"our_reserve_msat": {},
|
||||||
|
"spendable_msat": {},
|
||||||
|
"receivable_msat": {},
|
||||||
|
"minimum_htlc_in_msat": {},
|
||||||
|
"minimum_htlc_out_msat": {},
|
||||||
|
"maximum_htlc_out_msat": {},
|
||||||
|
"spendable_msatoshi": {},
|
||||||
|
"receivable_msatoshi": {},
|
||||||
|
"their_to_self_delay": {},
|
||||||
|
"our_to_self_delay": {},
|
||||||
|
"max_accepted_htlcs": {},
|
||||||
|
"msatoshi_to_us": {},
|
||||||
|
"msatoshi_to_us_min": {},
|
||||||
|
"msatoshi_to_us_max": {},
|
||||||
|
"msatoshi_total": {},
|
||||||
|
"dust_limit_satoshis": {},
|
||||||
|
"max_htlc_value_in_flight_msat": {},
|
||||||
|
"our_channel_reserve_satoshis": {},
|
||||||
|
"their_channel_reserve_satoshis": {},
|
||||||
|
"spendable_satoshis": {},
|
||||||
|
"receivable_satoshis": {},
|
||||||
|
"htlc_minimum_msat": {},
|
||||||
|
"state_changes": {},
|
||||||
|
"status": {},
|
||||||
|
"in_payments_offered": {},
|
||||||
|
"in_offered_msat": {},
|
||||||
|
"in_msatoshi_offered": {},
|
||||||
|
"in_payments_fulfilled": {},
|
||||||
|
"in_fulfilled_msat": {},
|
||||||
|
"in_msatoshi_fulfilled": {},
|
||||||
|
"out_payments_offered": {},
|
||||||
|
"out_offered_msat": {},
|
||||||
|
"out_msatoshi_offered": {},
|
||||||
|
"out_payments_fulfilled": {},
|
||||||
|
"out_fulfilled_msat": {},
|
||||||
|
"out_msatoshi_fulfilled": {},
|
||||||
|
"htlcs": {},
|
||||||
|
"initial_feerate": {},
|
||||||
|
"last_feerate": {},
|
||||||
|
"next_feerate": {},
|
||||||
|
"inflight": {},
|
||||||
|
"last_tx_fee_msat": {},
|
||||||
|
"direction": {},
|
||||||
|
"close_to_addr": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The bitcoin address we will close to"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"required": [
|
||||||
|
"scratch_txid"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"last_tx_fee_msat"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"state": {},
|
||||||
|
"peer_id": {},
|
||||||
|
"peer_connected": {},
|
||||||
|
"alias": {},
|
||||||
|
"scratch_txid": {},
|
||||||
|
"feerate": {},
|
||||||
|
"owner": {},
|
||||||
|
"short_channel_id": {},
|
||||||
|
"channel_id": {},
|
||||||
|
"funding_txid": {},
|
||||||
|
"funding_outnum": {},
|
||||||
|
"inflight": {},
|
||||||
|
"close_to": {},
|
||||||
|
"private": {},
|
||||||
|
"opener": {},
|
||||||
|
"closer": {},
|
||||||
|
"features": {},
|
||||||
|
"funding": {},
|
||||||
|
"to_us_msat": {},
|
||||||
|
"min_to_us_msat": {},
|
||||||
|
"max_to_us_msat": {},
|
||||||
|
"total_msat": {},
|
||||||
|
"fee_base_msat": {},
|
||||||
|
"fee_proportional_millionths": {},
|
||||||
|
"dust_limit_msat": {},
|
||||||
|
"max_total_htlc_in_msat": {},
|
||||||
|
"their_reserve_msat": {},
|
||||||
|
"our_reserve_msat": {},
|
||||||
|
"spendable_msat": {},
|
||||||
|
"receivable_msat": {},
|
||||||
|
"minimum_htlc_in_msat": {},
|
||||||
|
"minimum_htlc_out_msat": {},
|
||||||
|
"maximum_htlc_out_msat": {},
|
||||||
|
"spendable_msatoshi": {},
|
||||||
|
"receivable_msatoshi": {},
|
||||||
|
"their_to_self_delay": {},
|
||||||
|
"our_to_self_delay": {},
|
||||||
|
"max_accepted_htlcs": {},
|
||||||
|
"msatoshi_to_us": {},
|
||||||
|
"msatoshi_to_us_min": {},
|
||||||
|
"msatoshi_to_us_max": {},
|
||||||
|
"msatoshi_total": {},
|
||||||
|
"dust_limit_satoshis": {},
|
||||||
|
"max_htlc_value_in_flight_msat": {},
|
||||||
|
"our_channel_reserve_satoshis": {},
|
||||||
|
"their_channel_reserve_satoshis": {},
|
||||||
|
"spendable_satoshis": {},
|
||||||
|
"receivable_satoshis": {},
|
||||||
|
"htlc_minimum_msat": {},
|
||||||
|
"state_changes": {},
|
||||||
|
"status": {},
|
||||||
|
"in_payments_offered": {},
|
||||||
|
"in_offered_msat": {},
|
||||||
|
"in_msatoshi_offered": {},
|
||||||
|
"in_payments_fulfilled": {},
|
||||||
|
"in_fulfilled_msat": {},
|
||||||
|
"in_msatoshi_fulfilled": {},
|
||||||
|
"out_payments_offered": {},
|
||||||
|
"out_offered_msat": {},
|
||||||
|
"out_msatoshi_offered": {},
|
||||||
|
"out_payments_fulfilled": {},
|
||||||
|
"out_fulfilled_msat": {},
|
||||||
|
"out_msatoshi_fulfilled": {},
|
||||||
|
"htlcs": {},
|
||||||
|
"initial_feerate": {},
|
||||||
|
"last_feerate": {},
|
||||||
|
"next_feerate": {},
|
||||||
|
"close_to_addr": {},
|
||||||
|
"direction": {},
|
||||||
|
"last_tx_fee_msat": {
|
||||||
|
"type": "msat",
|
||||||
|
"description": "fee attached to this the current tx"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"required": [
|
||||||
|
"short_channel_id"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"direction"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"alias": {},
|
||||||
|
"peer_id": {},
|
||||||
|
"peer_connected": {},
|
||||||
|
"state": {},
|
||||||
|
"scratch_txid": {},
|
||||||
|
"feerate": {},
|
||||||
|
"owner": {},
|
||||||
|
"short_channel_id": {},
|
||||||
|
"channel_id": {},
|
||||||
|
"funding_txid": {},
|
||||||
|
"funding_outnum": {},
|
||||||
|
"inflight": {},
|
||||||
|
"close_to": {},
|
||||||
|
"private": {},
|
||||||
|
"opener": {},
|
||||||
|
"closer": {},
|
||||||
|
"features": {},
|
||||||
|
"funding": {},
|
||||||
|
"to_us_msat": {},
|
||||||
|
"min_to_us_msat": {},
|
||||||
|
"max_to_us_msat": {},
|
||||||
|
"total_msat": {},
|
||||||
|
"fee_base_msat": {},
|
||||||
|
"fee_proportional_millionths": {},
|
||||||
|
"dust_limit_msat": {},
|
||||||
|
"max_total_htlc_in_msat": {},
|
||||||
|
"their_reserve_msat": {},
|
||||||
|
"our_reserve_msat": {},
|
||||||
|
"spendable_msat": {},
|
||||||
|
"receivable_msat": {},
|
||||||
|
"minimum_htlc_in_msat": {},
|
||||||
|
"minimum_htlc_out_msat": {},
|
||||||
|
"maximum_htlc_out_msat": {},
|
||||||
|
"spendable_msatoshi": {},
|
||||||
|
"receivable_msatoshi": {},
|
||||||
|
"their_to_self_delay": {},
|
||||||
|
"our_to_self_delay": {},
|
||||||
|
"max_accepted_htlcs": {},
|
||||||
|
"msatoshi_to_us": {},
|
||||||
|
"msatoshi_to_us_min": {},
|
||||||
|
"msatoshi_to_us_max": {},
|
||||||
|
"msatoshi_total": {},
|
||||||
|
"dust_limit_satoshis": {},
|
||||||
|
"max_htlc_value_in_flight_msat": {},
|
||||||
|
"our_channel_reserve_satoshis": {},
|
||||||
|
"their_channel_reserve_satoshis": {},
|
||||||
|
"spendable_satoshis": {},
|
||||||
|
"receivable_satoshis": {},
|
||||||
|
"htlc_minimum_msat": {},
|
||||||
|
"state_changes": {},
|
||||||
|
"status": {},
|
||||||
|
"in_payments_offered": {},
|
||||||
|
"in_offered_msat": {},
|
||||||
|
"in_msatoshi_offered": {},
|
||||||
|
"in_payments_fulfilled": {},
|
||||||
|
"in_fulfilled_msat": {},
|
||||||
|
"in_msatoshi_fulfilled": {},
|
||||||
|
"out_payments_offered": {},
|
||||||
|
"out_offered_msat": {},
|
||||||
|
"out_msatoshi_offered": {},
|
||||||
|
"out_payments_fulfilled": {},
|
||||||
|
"out_fulfilled_msat": {},
|
||||||
|
"out_msatoshi_fulfilled": {},
|
||||||
|
"htlcs": {},
|
||||||
|
"initial_feerate": {},
|
||||||
|
"last_feerate": {},
|
||||||
|
"next_feerate": {},
|
||||||
|
"close_to_addr": {},
|
||||||
|
"last_tx_fee_msat": {},
|
||||||
|
"direction": {
|
||||||
|
"type": "u32",
|
||||||
|
"description": "0 if we're the lesser node_id, 1 if we're the greater"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"if": {
|
||||||
|
"required": [
|
||||||
|
"inflight"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"then": {
|
||||||
|
"additionalProperties": false,
|
||||||
|
"required": [
|
||||||
|
"initial_feerate",
|
||||||
|
"last_feerate",
|
||||||
|
"next_feerate"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"state": {},
|
||||||
|
"peer_id": {},
|
||||||
|
"peer_connected": {},
|
||||||
|
"scratch_txid": {},
|
||||||
|
"feerate": {},
|
||||||
|
"owner": {},
|
||||||
|
"alias": {},
|
||||||
|
"short_channel_id": {},
|
||||||
|
"channel_id": {},
|
||||||
|
"funding_txid": {},
|
||||||
|
"funding_outnum": {},
|
||||||
|
"close_to": {},
|
||||||
|
"private": {},
|
||||||
|
"opener": {},
|
||||||
|
"closer": {},
|
||||||
|
"features": {},
|
||||||
|
"funding": {},
|
||||||
|
"to_us_msat": {},
|
||||||
|
"min_to_us_msat": {},
|
||||||
|
"max_to_us_msat": {},
|
||||||
|
"total_msat": {},
|
||||||
|
"fee_base_msat": {},
|
||||||
|
"fee_proportional_millionths": {},
|
||||||
|
"dust_limit_msat": {},
|
||||||
|
"max_total_htlc_in_msat": {},
|
||||||
|
"their_reserve_msat": {},
|
||||||
|
"our_reserve_msat": {},
|
||||||
|
"spendable_msat": {},
|
||||||
|
"receivable_msat": {},
|
||||||
|
"minimum_htlc_in_msat": {},
|
||||||
|
"minimum_htlc_out_msat": {},
|
||||||
|
"maximum_htlc_out_msat": {},
|
||||||
|
"spendable_msatoshi": {},
|
||||||
|
"receivable_msatoshi": {},
|
||||||
|
"their_to_self_delay": {},
|
||||||
|
"our_to_self_delay": {},
|
||||||
|
"max_accepted_htlcs": {},
|
||||||
|
"msatoshi_to_us": {},
|
||||||
|
"msatoshi_to_us_min": {},
|
||||||
|
"msatoshi_to_us_max": {},
|
||||||
|
"msatoshi_total": {},
|
||||||
|
"dust_limit_satoshis": {},
|
||||||
|
"max_htlc_value_in_flight_msat": {},
|
||||||
|
"our_channel_reserve_satoshis": {},
|
||||||
|
"their_channel_reserve_satoshis": {},
|
||||||
|
"spendable_satoshis": {},
|
||||||
|
"receivable_satoshis": {},
|
||||||
|
"htlc_minimum_msat": {},
|
||||||
|
"state_changes": {},
|
||||||
|
"status": {},
|
||||||
|
"in_payments_offered": {},
|
||||||
|
"in_offered_msat": {},
|
||||||
|
"in_msatoshi_offered": {},
|
||||||
|
"in_payments_fulfilled": {},
|
||||||
|
"in_fulfilled_msat": {},
|
||||||
|
"in_msatoshi_fulfilled": {},
|
||||||
|
"out_payments_offered": {},
|
||||||
|
"out_offered_msat": {},
|
||||||
|
"out_msatoshi_offered": {},
|
||||||
|
"out_payments_fulfilled": {},
|
||||||
|
"out_fulfilled_msat": {},
|
||||||
|
"out_msatoshi_fulfilled": {},
|
||||||
|
"htlcs": {},
|
||||||
|
"inflight": {},
|
||||||
|
"close_to_addr": {},
|
||||||
|
"direction": {},
|
||||||
|
"last_tx_fee_msat": {},
|
||||||
|
"initial_feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The feerate for the initial funding transaction in per-1000-weight, with \"kpw\" appended"
|
||||||
|
},
|
||||||
|
"last_feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The feerate for the latest funding transaction in per-1000-weight, with \"kpw\" appended"
|
||||||
|
},
|
||||||
|
"next_feerate": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "The minimum feerate for the next funding transaction in per-1000-weight, with \"kpw\" appended"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -2047,6 +2047,60 @@ static const struct json_command staticbackup_command = {
|
||||||
/* Comment added to satisfice AUTODATA */
|
/* Comment added to satisfice AUTODATA */
|
||||||
AUTODATA(json_command, &staticbackup_command);
|
AUTODATA(json_command, &staticbackup_command);
|
||||||
|
|
||||||
|
static void json_add_peerchannels(struct lightningd *ld,
|
||||||
|
struct json_stream *response,
|
||||||
|
const struct peer *peer)
|
||||||
|
{
|
||||||
|
struct channel *channel;
|
||||||
|
|
||||||
|
json_add_uncommitted_channel(response, peer->uncommitted_channel, peer);
|
||||||
|
list_for_each(&peer->channels, channel, list) {
|
||||||
|
if (channel_unsaved(channel))
|
||||||
|
json_add_unsaved_channel(response, channel, peer);
|
||||||
|
else
|
||||||
|
json_add_channel(ld, response, NULL, channel, peer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct command_result *json_listpeerchannels(struct command *cmd,
|
||||||
|
const char *buffer,
|
||||||
|
const jsmntok_t *obj UNNEEDED,
|
||||||
|
const jsmntok_t *params)
|
||||||
|
{
|
||||||
|
struct node_id *peer_id;
|
||||||
|
struct peer *peer;
|
||||||
|
struct json_stream *response;
|
||||||
|
|
||||||
|
/* FIME: filter by status */
|
||||||
|
if (!param(cmd, buffer, params,
|
||||||
|
p_opt("id", param_node_id, &peer_id),
|
||||||
|
NULL))
|
||||||
|
return command_param_failed();
|
||||||
|
|
||||||
|
response = json_stream_success(cmd);
|
||||||
|
json_array_start(response, "channels");
|
||||||
|
|
||||||
|
if (peer_id) {
|
||||||
|
peer = peer_by_id(cmd->ld, peer_id);
|
||||||
|
if (peer)
|
||||||
|
json_add_peerchannels(cmd->ld, response, peer);
|
||||||
|
} else {
|
||||||
|
list_for_each(&cmd->ld->peers, peer, list)
|
||||||
|
json_add_peerchannels(cmd->ld, response, peer);
|
||||||
|
}
|
||||||
|
|
||||||
|
json_array_end(response);
|
||||||
|
|
||||||
|
return command_success(cmd, response);
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct json_command listpeerchannels_command = {
|
||||||
|
"listpeerchannels",
|
||||||
|
"network",
|
||||||
|
json_listpeerchannels,
|
||||||
|
"Show channels with direct peers."
|
||||||
|
};
|
||||||
|
AUTODATA(json_command, &listpeerchannels_command);
|
||||||
|
|
||||||
struct command_result *
|
struct command_result *
|
||||||
command_find_channel(struct command *cmd,
|
command_find_channel(struct command *cmd,
|
||||||
|
|
Loading…
Add table
Reference in a new issue