Skip to content
#

lightning-network

Here are 454 public repositories matching this topic...

alexbosworth
alexbosworth commented Dec 19, 2021

In the output of list channels the private/public status of the channel is returned, but in the output of pending channels the status is not revealed. To allow for recognizing a pending open channel as a private requires waiting for the channel to confirm.

Ideally the PendingChannelsResponse would include the channel flags or the private/public status of the channel to know which type of chan

enhancement rpc beginner good first issue
t-bast
t-bast commented Jul 2, 2021

When we return a bitcoin amount, our JSON responses currently specify the unit (btc, sat, msat) in the parameter name, but it's a bit ugly and is missing in some places.

Maybe it would be better to include the unit explicitly in the response. I see two different options:

  • Instead of returning a numeric value, return a string including the unit (e.g. "2500 msat", "0.45 btc", "1.5 mbtc"). The
RTL
saubyk
saubyk commented Nov 20, 2021

The rpcuser value is sensitive information and should not be displayed in the UI (/rtl/config/lnconfig).
We can take the following approaches to display the hidden information:
Password protect the config page and ask the user to enter password to display the page.

The expected behavior would be:

  • User clicks on the LND Config tab
  • The application prompts the user for entering the pas
enhancement good first issue vulnerability LND
Gesundeslicht
Gesundeslicht commented Aug 21, 2019
  • I'm submitting a ...

    • bug report
    • feature request
    • [x ] support request
  • What is the current behavior?

Traceback (most recent call last):
File "run.py", line 22, in
sys.exit(app.start())
File "/home/Martin/node-launcher/node_launcher/gui/application.py", line 32, in start
self.node_set.start()
File "/home/Martin/node-launcher/node_

bug good first issue
joule-extension
Technifocal
Technifocal commented May 29, 2019

Description of the Feature or Idea

Ratelimit the speed at which sites can create getInfo()/sendInvoice()/makeInvoice() requests if they require opening a window (for example, getInfo(), if pre-approved, should not be ratelimited). In testing, a buggy/malicious site can easily open tens or hundreds of windows.

Existing Example(s) of Feature

Here is an example piece of code to tri

bug good first issue
cyphernode
FrancisPouliot
FrancisPouliot commented Feb 17, 2020

This is useful for claiming pegins with elements

gettxoutproof ["txid",...] ( "blockhash" )

Returns a hex-encoded proof that "txid" was included in a block.

NOTE: By default this function only works sometimes. This is when there is an
unspent output in the utxo for this transaction. To make it always work,
you need to maintain a transaction index, using the -txindex command line option

good first issue
spark-wallet
shesek
shesek commented Sep 11, 2018

Some candidates for removal that could easily be re-implemented inside Spark:

  • superagent (only used for a simple HTTP GET request, can be replaced with the built-in http module)

  • helmet (sets security headers)

  • js-yaml (only used to format objects in a human-readable manner, we don't really need yaml)

  • nanoid (secure random string generator)

  • is-ip (few-liner depende

bitcoin-s
Christewart
Christewart commented Dec 13, 2021

Useful endpoints for the front end. It allows us to display to users if we are doing IBD or rescanning the wallet. This should add rescan and sync endpoints to indicate that the wallet is doing intiial block download (sync) or rescan which indicates the wallet is being rescanned.

{
  "wallet": {
    "keymanager": {
      "rootXpub": "zpub6jftahH18ngZyaghYHAYjB4MDxtYH4VZpLhkbeQot
enhancement good first issue wallet
vindard
vindard commented Jan 27, 2022

Background

The Lightning Network is denominated in millisatoshis but amounts in our system are usually presented as a rounded version of satoshis.

Within lnd there are usually two types of token amounts quoted:

  • tokens: a rounded down version of millitokens
  • safe_tokens: a rounded up version of millitokens

In our own domain we express this distinction with the `roundedUp-

good first issue

Improve this page

Add a description, image, and links to the lightning-network topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the lightning-network topic, visit your repo's landing page and select "manage topics."

Learn more