-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ideas for a plugin #81
Comments
Yeah like the python qr generator that uses ASCII output that actually works great :D |
You mean an ASCII QR code that prints to stdout, or a web-server that displays the QR code as an image? |
I meant just ASCII, like spark-wallet does for onion pairing |
|
https://superuser.com/questions/1420001/is-it-possible-to-create-a-qr-code-using-text actually I think UTF-8 or ANSI would be nicer and probably work better. I guess we should not use that tool otherwise I would quickly create a wrapper for a plugin. on the other hand why not using a third party lib in a plugin |
|
lightning-cli newaddr | jq -r '.bech32' | qrencode -t UTF8 lightning-cli invoice 123456 qrtest qrtest | jq -r '.bolt11' | qrencode -t UTF8 too linux-way though, if you ask me... Is it possible to pass an additional flag to existing cli command and catch it with a plugin? |
Nop, but you can introduce a new command You could also use the |
A plugin that generates a QR code out of a
newaddr
to fundlightningd
's wallet from a mobile walletA Bitcoin backend plugin for your favourite data source, you can checkout Sauron as an example.
The text was updated successfully, but these errors were encountered: