1
0
Fork 0
mirror of https://github.com/ACINQ/eclair.git synced 2025-02-22 14:22:39 +01:00

Update built site

This commit is contained in:
t-bast 2024-12-04 10:45:52 +01:00
parent 5d5e837d25
commit dd266642e8
No known key found for this signature in database
GPG key ID: 34F377B0100ED6BB

View file

@ -1897,6 +1897,12 @@ eclair-cli nodes
<td>Yes</td>
<td>CSV or JSON list of 33-bytes-HexString (String)</td>
</tr>
<tr>
<td>liquidityProvider</td>
<td>If true, only returns nodes selling liquidity ads</td>
<td>Yes</td>
<td>Boolean</td>
</tr>
</tbody></table>
<h2 id='node'>Node</h2><pre class="highlight shell tab-shell"><code>curl -s -u :&lt;eclair_api_password&gt; -X POST -F <span class="nv">nodeId</span><span class="o">=</span>&lt;some_node&gt; <span class="s2">"http://localhost:8080/node"</span>
@ -2164,6 +2170,12 @@ eclair-cli createinvoice --description<span class="o">=</span>&lt;some_descripti
<td>Yes</td>
<td>32-bytes-HexString (String)</td>
</tr>
<tr>
<td>privateChannelIds</td>
<td>List of private channels to include as routing hints</td>
<td>Yes</td>
<td>CSV or JSON list of channelId</td>
</tr>
</tbody></table>
<p>(*): you must specify either description or descriptionHash, but not both.</p>
@ -4218,6 +4230,18 @@ statistics about the routing activity of the channels. Values are in Satoshis.</
<td>Yes</td>
<td>Unix timestamp in seconds (Integer)</td>
</tr>
<tr>
<td>count</td>
<td>Limits the number of results returned</td>
<td>Yes</td>
<td>Integer</td>
</tr>
<tr>
<td>skip</td>
<td>Skip some number of results</td>
<td>Yes</td>
<td>Integer</td>
</tr>
</tbody></table>
<h2 id='usablebalances'>UsableBalances</h2><pre class="highlight shell tab-shell"><code>curl -s -u :&lt;eclair_api_password&gt; -X POST <span class="s2">"http://localhost:8080/usablebalances"</span>