Bitcoin Forum
May 08, 2024, 09:06:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 [63] 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 »
  Print  
Author Topic: The Lightning Network FAQ  (Read 32070 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (37 posts by 1+ user deleted.)
DaveF
Legendary
*
Offline Offline

Activity: 3472
Merit: 6266


Crypto Swap Exchange


View Profile WWW
March 04, 2022, 11:31:05 AM
 #1241

Is there a way to choose what inputs you use when opening channel?

Yes. However, I believe that you need to construct the funding transaction manually when using either LND or c-lightning.

c-lightning: lightning-utxopsbt, lightning-openchannel_init, lightning-openchannel_update, lightning-signpsbt, lightning-openchannel_signed

I have never tested it, so you might want to check the documentation more carefully to see if I am correct before trying it out.
...

Did not work, I'll have to check over the weekend when I have time to see what I did wrong.

You would think that a L2 solution that is (1) designed to save people money in tx fees and (2) is supposed to increase privacy would have a simple way to select the UTXOs you want to use.

-Dave

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
1715159202
Hero Member
*
Offline Offline

Posts: 1715159202

View Profile Personal Message (Offline)

Ignore
1715159202
Reply with quote  #2

1715159202
Report to moderator
Whoever mines the block which ends up containing your transaction will get its fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715159202
Hero Member
*
Offline Offline

Posts: 1715159202

View Profile Personal Message (Offline)

Ignore
1715159202
Reply with quote  #2

1715159202
Report to moderator
1715159202
Hero Member
*
Offline Offline

Posts: 1715159202

View Profile Personal Message (Offline)

Ignore
1715159202
Reply with quote  #2

1715159202
Report to moderator
Rath_ (OP)
aka BitCryptex
Legendary
*
Offline Offline

Activity: 1876
Merit: 3131



View Profile
March 13, 2022, 05:48:42 PM
Last edit: March 13, 2022, 06:00:59 PM by Rath_
Merited by ABCbits (3), JayJuanGee (2), BlackHatCoiner (2), n0nce (2)
 #1242

I mean when one tries to cheat by broadcasting an outdated commitment transaction. As far as I've understood, the cheater needs both signatures to spend from the force-closed multi-sig address.

The sender needs both signatures to spend the output of the funding transaction. That output is spent by every commitment transaction or a transaction that is signed during cooperative close. Commitment transactions lock each output differently.

"to_local":

Code: (https://github.com/lightning/bolts/blob/master/03-transactions.md#to_local-output)
OP_IF
    # Penalty transaction
    <revocationpubkey>
OP_ELSE
    `to_self_delay`
    OP_CHECKSEQUENCEVERIFY
    OP_DROP
    <local_delayedpubkey>
OP_ENDIF
OP_CHECKSIG

If we assume that "to_local" output belongs to A, they can spend it once the CSV timelock expires using "local_delayedprivkey". B can spend this output at any time using their "revocationprivkey". There is no multisig here; just a bunch of conditions.

"to_remote" is usually a simple P2WPKH address.

Commitment transactions can also include HTLC outputs which we haven't talked about yet. They are used while the payment is being routed through a channel. They are also used for direct payments (to keep the protocol simple).

Offered HTLCs:

Code: (https://github.com/lightning/bolts/blob/master/03-transactions.md#offered-htlc-outputs)
# To remote node with revocation key
OP_DUP OP_HASH160 <RIPEMD160(SHA256(revocationpubkey))> OP_EQUAL
OP_IF
    OP_CHECKSIG
OP_ELSE
    <remote_htlcpubkey> OP_SWAP OP_SIZE 32 OP_EQUAL
    OP_NOTIF
        # To local node via HTLC-timeout transaction (timelocked).
        OP_DROP 2 OP_SWAP <local_htlcpubkey> 2 OP_CHECKMULTISIG
    OP_ELSE
        # To remote node with preimage.
        OP_HASH160 <RIPEMD160(payment_hash)> OP_EQUALVERIFY
        OP_CHECKSIG
    OP_ENDIF
OP_ENDIF

In your case, A has this output in their first commitment transaction. This output can be spent using either the payment preimage + B's HTLC signature, or A's and B's HTLC signatures (HTLC-timeout transaction) which it timelocked.

Received HTLCs:

Code: (https://github.com/lightning/bolts/blob/master/03-transactions.md#received-htlc-outputs)
# To remote node with revocation key
OP_DUP OP_HASH160 <RIPEMD160(SHA256(revocationpubkey))> OP_EQUAL
OP_IF
    OP_CHECKSIG
OP_ELSE
    <remote_htlcpubkey> OP_SWAP OP_SIZE 32 OP_EQUAL
    OP_IF
        # To local node via HTLC-success transaction.
        OP_HASH160 <RIPEMD160(payment_hash)> OP_EQUALVERIFY
        2 OP_SWAP <local_htlcpubkey> 2 OP_CHECKMULTISIG
    OP_ELSE
        # To remote node after timeout.
        OP_DROP <cltv_expiry> OP_CHECKLOCKTIMEVERIFY OP_DROP
        OP_CHECKSIG
    OP_ENDIF
OP_ENDIF

In your case, B has this output in their first commitment transaction. It requires either payment preimage and A's and B's HTLC signatures (HTLC-success transaction), or A's HTLC signature once the CSV timelock expires.

A and B include signatures for HTLC-success/timeout transaction in a "commitment_signed" message ("num_htlcs*signature:htlc_signature" field). If you want to learn why these outputs must be spent using another pre-signed transactions, see this answer.

2. Alice wants to send him 0.02 BTC, so she signs a transaction with two outputs: A) to_local (that can be spent by her after x blocks) and B) to_remote that can be spent by Bob instantly.

It's slightly more complicated than that. We have to assume that they have already signed a commitment transaction with HLTC outputs. Every Lightning transaction involves two commitment updates.

Here's an example that I wrote some time ago. I assume that (A)lice wanted to pay (E)ric through B, C, D.

Here's my current understanding of how the system works:

0) Lightning nodes constantly use the gossip protocol (bolt07) to forward/receive "node_announcement", "channel_announcement", "channel_update" messages and maintain a local view of the whole network.
1) Alice receives a payment invoice from Eric which includes information like: Eric node's public key, payment hash, amount, expiry (date) and cltv expiry.
2) Alice constructs a path to Eric using her local map of the network. She tries to find the cheapest and the shortest route. The longer the route, the higher the risk that funds will get stuck during routing.
2a) She prepares "onion_routing_packet" which includes encrypted routing information for each hop.
3) Alice sends "update_add_htlc" message to Bob, which includes the "onion_routing_packet" (which is the same for all peers), the amount, the payment hash and cltv expiry.
4) Alice and Bob sign a new commitment transaction with an HTLC output.
5) Bob sends "update_add_htlc" to Carol with the same "onion_routing_packet".
6) Carol and Diana, Diana and Eric do the same.
7) Eric sends "update_fullfil_htlc" message to Diana, which includes the payment secret.
8) Eric and Diana remove the HTLC output and update balances by signing a new commitment transaction.
9) Diana sends "update_fullfil_htlc" to Carol with the same payment secret and they update the commitment transaction.
10) Carol and Bob, Bob and Alice do the same.

Comments:

3) The amount Alice sends is actually bigger than the one in the invoice as she must account for the fees. Each hop forwards the HTLC with a smaller amount and keeps the difference. If some hop tries to claim higher fees than Alice expected, the next node in the route will fail the payment as the routing instructions say how much one's node is supposed to forward.

If Bob doesn't have enough coins to forward the payment on his side of the channel with Carol, he must send "update_fail_htlc" message and Alice needs to try sending the payment through another route.

All channels use the same payment hash. It is safe because HTLC outputs require both the payment secret and HTLC signatures, which can be produced only by channel partners, to be spent. See this post for explanation.

In your case, A starts with "update_add_htlc" and then everything goes as you described. Afterwards, Bob sends "update_fullfil_hltc" and the commitment transaction is updated again in the same way.
Wind_FURY
Legendary
*
Offline Offline

Activity: 2912
Merit: 1825



View Profile
April 10, 2022, 10:16:18 AM
 #1243

Quote

Today we’re excited to announce Taro, a new Taproot-powered protocol for issuing assets on the bitcoin blockchain that can be transferred over the Lightning Network for instant, high volume, low fee transactions. This announcement marks a big shift to a multi-asset Lightning Network with the potential for the world’s currencies to route through bitcoin liquidity on the network. At its core, Taro taps into the security and stability of the bitcoin network and the speed, scalability, and low fees of Lightning. Together with the new protocol, we're also announcing our Series B fundraise to further build out Lightning Network infrastructure and help Number of People Go Up. 📈

Taro enables bitcoin to serve as a protocol of value by allowing app developers to integrate assets alongside BTC in apps both on-chain and over Lightning. This expands the reach of Lightning Network as a whole, bringing more users to the network who will drive more volume and liquidity in bitcoin, and allowing people to easily transfer fiat for bitcoin in their apps. More network volume means more routing fees for node operators, who will see the benefits of a multi-asset Lightning Network without needing to support any additional assets.

https://lightning.engineering/posts/2022-4-5-taro-launch/


Keep some of your attention on what these developers are trying to build on Bitcoin, and the Lightning Network. Node operators, prepare yourselves for more competition on those routing fees. Plebs accumulate as much Bitcoin as you possibily can during the next bear cycle. Bitcoin/Lightning might be more than a "payment network" during the new bull cycle.

██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
Carlton Banks
Legendary
*
Offline Offline

Activity: 3430
Merit: 3074



View Profile
April 10, 2022, 11:02:46 AM
Merited by fillippone (3), ABCbits (1)
 #1244


read the other post about this protocol


Lightning Labs tweaked someone else's protocol, called it their own, and are now using rich backers to promote it.

Laoula Osuntukon/Elizabeth Stark are increasingly looking like a grifter weirdos, who can't seem to find a corporate finance backed protocol development capture scheme they don't like...


don't worry everyone, _every_ corporate backed protocol has always failed since day dot. The smart ones sucked as much money as they could from their dumb customers, then bailed out before the company started circling the drain. Lightning Labs will be no different

Vires in numeris
DaveF
Legendary
*
Offline Offline

Activity: 3472
Merit: 6266


Crypto Swap Exchange


View Profile WWW
April 10, 2022, 11:20:25 AM
 #1245

lnd question:

Is there a way to see if peers tried to open a channel to you but could not for some reason?
One one of my nodes only have 2 channels opened by others although there are a lot of peers.

-Dave

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
dkbit98
Legendary
*
Offline Offline

Activity: 2226
Merit: 7138



View Profile WWW
April 12, 2022, 12:55:21 PM
Merited by LoyceV (4), DaveF (2), JayJuanGee (1), ABCbits (1), DdmrDdmr (1), BlackHatCoiner (1)
 #1246

I don't know if anyone saw that HRF Humans Right Foundation (the real one, not a scam started by Zoltan Konder scammer) is giving everyone 2,100 sats in Lightning Network to everyone who wants it.
All you have to do is, download Muun wallet for your smartphone and fill the form with your email address (use some temp mail) and write explanation why are you interested in Bitcoin?
You obviously can't get rich by doing this, but it's a good way for people to get their first Bitcoin for free and using Lightning.

Check out this cool page on HRF website:
Quote
Facing high inflation, frozen bank accounts, or difficulties in sending money?
Bitcoin is a way out.
https://www.getbitcoin.org/#get-btc

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
DaveF
Legendary
*
Offline Offline

Activity: 3472
Merit: 6266


Crypto Swap Exchange


View Profile WWW
April 12, 2022, 01:37:20 PM
 #1247

I guess the question is do you really have to use the Muun wallet or will any wallet work?
I didn't check yet, going to later today but was just wondering why that one vs my own running on my own node.

-Dave

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
dkbit98
Legendary
*
Offline Offline

Activity: 2226
Merit: 7138



View Profile WWW
April 13, 2022, 03:39:26 PM
 #1248

I guess the question is do you really have to use the Muun wallet or will any wallet work?
I didn't check yet, going to later today but was just wondering why that one vs my own running on my own node.
I think Muun wallet team received some donations before from HRF ($25k back in 2021), they probably like what they are doing and that is the reason to choose them.
Muun wallet have some unique way of storing both regular Bitcoin and Lightning transactions in single multi-signature wallet, so maybe it's something related with that.
You can try receiving sats with other wallet, but there must be a reason for them to say several times to use Muun wallet and not something else.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
LoyceV
Legendary
*
Online Online

Activity: 3304
Merit: 16618


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
April 13, 2022, 04:29:10 PM
Last edit: April 14, 2022, 09:19:22 AM by LoyceV
Merited by DaveF (2), JayJuanGee (1), ABCbits (1), dkbit98 (1)
 #1249

I think Muun wallet team received some donations before from HRF ($25k back in 2021)
~
You can try receiving sats with other wallet, but there must be a reason for them to say several times to use Muun wallet and not something else.
I was expecting this to work the other way: usually "the wallet" would pay someone for promoting their wallet. I wasn't expecting this from Human Rights Foundation, but I guess it makes sense considering those headlines on the site:
Quote
Bitcoin Dissidents: Those Who Need It Most
Fighting Monetary Colonialism with Open Source Code
Bitcoin, Authoritarianism, and Human Rights
How Bitcoin Can Help Refugees
How Bitcoin Is Used to Promote Human Rights: Stories From Activists and Refugees
How Bitcoin Is Protecting Human Rights Around the World
Banking The Unbanked: fireside with Jack Dorsey

Update: I've received the email:
Quote
Hi,

Congratulations on taking the first step of your Bitcoin journey. If you haven’t already, please download MuunWallet (iOS or Android). This will be the Bitcoin wallet you use to claim your Bitcoin.

Click this link to be redirected to our Bitcoin faucet. Tap “Copy LNURL”.

Open up MuunWallet, and create a new wallet. Tap “Receive”, then tap “Lightning”. Tap the scan button at the top right – it looks like this: [--] – then paste the LNURL link.

Congratulations, you have successfully received your first Bitcoin!

-Human Rights Foundation
BlueWallet says: "Unsupported lnurl".
Phoenix Wallet can't scan the QR-code. Copying it manually shows "legend.lnbits.com returned an error".
Muun Wallet says: "Contacting legend.lnbits.com...", followed by "Something went wrong".
That's not the best promotion for LN Sad

dkbit98
Legendary
*
Offline Offline

Activity: 2226
Merit: 7138



View Profile WWW
April 14, 2022, 01:11:22 PM
Merited by JayJuanGee (1), DaveF (1)
 #1250

BlueWallet says: "Unsupported lnurl".
Phoenix Wallet can't scan the QR-code. Copying it manually shows "legend.lnbits.com returned an error".
Muun Wallet says: "Contacting legend.lnbits.com...", followed by "Something went wrong".
That's not the best promotion for LN Sad
Thanks for testing this for us LoyceV, it's obviously not related with wallet that is used for receiving coins.
They are probably out of funds or they stopped sending sats due to abuse, but if that is the case they should at least add some notification information on their website or disable form submission.


.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
LoyceV
Legendary
*
Online Online

Activity: 3304
Merit: 16618


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
April 14, 2022, 04:10:06 PM
Merited by JayJuanGee (1), dkbit98 (1)
 #1251

They are probably out of funds
That could be the reason. I tried again (by scanning the QR-code in Phoenix Wallet, because I already uninstalled Muun), and it worked now. Funds were received in a few seconds.
I've sent 2100 sat back to HRF.org.

Wind_FURY
Legendary
*
Offline Offline

Activity: 2912
Merit: 1825



View Profile
April 15, 2022, 11:00:05 AM
 #1252


read the other post about this protocol


What other post?

Quote

Lightning Labs tweaked someone else's protocol, called it their own, and are now using rich backers to promote it.

Laoula Osuntukon/Elizabeth Stark are increasingly looking like a grifter weirdos, who can't seem to find a corporate finance backed protocol development capture scheme they don't like...


don't worry everyone, _every_ corporate backed protocol has always failed since day dot. The smart ones sucked as much money as they could from their dumb customers, then bailed out before the company started circling the drain. Lightning Labs will be no different


OK, there's drama behind it. But from a speculator's perspective and if we move away from the drama, and concentrate on the technology of the protocol and what functionality it can bring to Bitcoin, I believe there's a new narrative to build on to push Bitcoin to six digits?

██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
fillippone
Legendary
*
Offline Offline

Activity: 2156
Merit: 15476


Fully fledged Merit Cycler - Golden Feather 22-23


View Profile WWW
April 16, 2022, 10:14:32 AM
 #1253


read the other post about this protocol


What other post?

Quote

Lightning Labs tweaked someone else's protocol, called it their own, and are now using rich backers to promote it.

Laoula Osuntukon/Elizabeth Stark are increasingly looking like a grifter weirdos, who can't seem to find a corporate finance backed protocol development capture scheme they don't like...


don't worry everyone, _every_ corporate backed protocol has always failed since day dot. The smart ones sucked as much money as they could from their dumb customers, then bailed out before the company started circling the drain. Lightning Labs will be no different


OK, there's drama behind it. But from a speculator's perspective and if we move away from the drama, and concentrate on the technology of the protocol and what functionality it can bring to Bitcoin, I believe there's a new narrative to build on to push Bitcoin to six digits?


Well, the technology is exactly what TARO stole from an open source project, named RGB.
Technically you cannot steal an open source code, but omitting to credit the original developers for the sake of obtaining funding, well, it's borderline with non ethical behavior.
I already discussed it here and here, not to derail too much this thread.


.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
n0nce
Hero Member
*****
Offline Offline

Activity: 882
Merit: 5818


not your keys, not your coins!


View Profile WWW
April 16, 2022, 12:33:21 PM
Merited by JayJuanGee (1), ABCbits (1), BlackHatCoiner (1)
 #1254

OK, there's drama behind it. But from a speculator's perspective and if we move away from the drama, and concentrate on the technology of the protocol and what functionality it can bring to Bitcoin, I believe there's a new narrative to build on to push Bitcoin to six digits?

Well, the technology is exactly what TARO stole from an open source project, named RGB.
Technically you cannot steal an open source code, but omitting to credit the original developers for the sake of obtaining funding, well, it's borderline with non ethical behavior.
I already discussed it here and here, not to derail too much this thread.
Besides this technology being copied without attribution, I don't understand why Wind_FURY is always so focused on dollar-denominated Bitcoin price. Does he believe people work for free to improve Bitcoin just so there is a new narrative to build on to push Bitcoin to six digits? People like those that work on RGB who put in their own free time and money to improve Bitcoin, make it more usable, faster, secure, to add more features like tokens - they don't do it just so some random investor can double his investment. These are genuine attempts to improve Bitcoin as a currency, as a means of payment and much more.
Sure, it can get more valuable if it's got more features, but please let's not always think 'price first' - that's what shitcoiners do. Adding whatever people find fun and cool so they pump their coin, then dump everything. Just about profit, no spirit of anarchistic independent money (often no nodes exist in those projects) or banking the unbanked.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
LoyceV
Legendary
*
Online Online

Activity: 3304
Merit: 16618


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
April 17, 2022, 02:45:08 PM
Merited by JayJuanGee (1)
 #1255

BlueWallet says: "Unsupported lnurl".
Phoenix Wallet can't scan the QR-code. Copying it manually shows "legend.lnbits.com returned an error".
Muun Wallet says: "Contacting legend.lnbits.com...", followed by "Something went wrong".
That's not the best promotion for LN Sad
To continue this test: I just found out that 3 days ago, my BlueWallet received 2 times 2100 sat. So it looks like the failed and "Unsupported lnurl" worked a bit later anyway! I can't check if Muun Wallet received something, because I already deleted it (and the seed phrase too).

I assumed a LNURL payment can work only once, but somehow the same QR-code paid me 3 times in total. That seems like a serious bug. I'll donate it back again.

PrimeNumber7
Copper Member
Legendary
*
Offline Offline

Activity: 1624
Merit: 1899

Amazon Prime Member #7


View Profile
April 17, 2022, 05:41:51 PM
 #1256

BlueWallet says: "Unsupported lnurl".
Phoenix Wallet can't scan the QR-code. Copying it manually shows "legend.lnbits.com returned an error".
Muun Wallet says: "Contacting legend.lnbits.com...", followed by "Something went wrong".
That's not the best promotion for LN Sad
To continue this test: I just found out that 3 days ago, my BlueWallet received 2 times 2100 sat. So it looks like the failed and "Unsupported lnurl" worked a bit later anyway! I can't check if Muun Wallet received something, because I already deleted it (and the seed phrase too).

I assumed a LNURL payment can work only once, but somehow the same QR-code paid me 3 times in total. That seems like a serious bug. I'll donate it back again.
It is only a matter of time before someone takes all the coin intended to be offered to MuunWallet users. The process you described already sounds easy to automate at scale, and simply accessing a LNURL is even easier.
DaveF
Legendary
*
Offline Offline

Activity: 3472
Merit: 6266


Crypto Swap Exchange


View Profile WWW
April 17, 2022, 07:01:35 PM
 #1257

BlueWallet says: "Unsupported lnurl".
Phoenix Wallet can't scan the QR-code. Copying it manually shows "legend.lnbits.com returned an error".
Muun Wallet says: "Contacting legend.lnbits.com...", followed by "Something went wrong".
That's not the best promotion for LN Sad
To continue this test: I just found out that 3 days ago, my BlueWallet received 2 times 2100 sat. So it looks like the failed and "Unsupported lnurl" worked a bit later anyway! I can't check if Muun Wallet received something, because I already deleted it (and the seed phrase too).

I assumed a LNURL payment can work only once, but somehow the same QR-code paid me 3 times in total. That seems like a serious bug. I'll donate it back again.
It is only a matter of time before someone takes all the coin intended to be offered to MuunWallet users. The process you described already sounds easy to automate at scale, and simply accessing a LNURL is even easier.

And I didn't get anything in any of the wallets I tried.
I guess either they did some really bad coding, or did not put in enough funds, or???
Either way, does not make them look good.

-Dave

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
PrimeNumber7
Copper Member
Legendary
*
Offline Offline

Activity: 1624
Merit: 1899

Amazon Prime Member #7


View Profile
April 17, 2022, 09:44:12 PM
 #1258

BlueWallet says: "Unsupported lnurl".
Phoenix Wallet can't scan the QR-code. Copying it manually shows "legend.lnbits.com returned an error".
Muun Wallet says: "Contacting legend.lnbits.com...", followed by "Something went wrong".
That's not the best promotion for LN Sad
To continue this test: I just found out that 3 days ago, my BlueWallet received 2 times 2100 sat. So it looks like the failed and "Unsupported lnurl" worked a bit later anyway! I can't check if Muun Wallet received something, because I already deleted it (and the seed phrase too).

I assumed a LNURL payment can work only once, but somehow the same QR-code paid me 3 times in total. That seems like a serious bug. I'll donate it back again.
It is only a matter of time before someone takes all the coin intended to be offered to MuunWallet users. The process you described already sounds easy to automate at scale, and simply accessing a LNURL is even easier.

And I didn't get anything in any of the wallets I tried.
I guess either they did some really bad coding, or did not put in enough funds, or???
Either way, does not make them look good.

-Dave
Loyce's experience with the error messages is likely (IMO) a result of poor coding and/or the lack of testing (and resolving issues when tests fail). If you are not receiving any funds when Loyce received funds 3x, may mean that someone already took all the funds.
Wind_FURY
Legendary
*
Offline Offline

Activity: 2912
Merit: 1825



View Profile
April 19, 2022, 05:55:55 AM
Last edit: April 19, 2022, 07:26:44 AM by Wind_FURY
 #1259

OK, there's drama behind it. But from a speculator's perspective and if we move away from the drama, and concentrate on the technology of the protocol and what functionality it can bring to Bitcoin, I believe there's a new narrative to build on to push Bitcoin to six digits?

Well, the technology is exactly what TARO stole from an open source project, named RGB.
Technically you cannot steal an open source code, but omitting to credit the original developers for the sake of obtaining funding, well, it's borderline with non ethical behavior.
I already discussed it here and here, not to derail too much this thread.

Besides this technology being copied without attribution, I don't understand why Wind_FURY is always so focused on dollar-denominated Bitcoin price.


Ser, I would be lying if I said that I didn't care about Bitcoin's price. I did buy and HODL them as an investment first and foremost. Didn't anyone?

Plus what's with that tone? Why does it look like that you are always trying to make me look bad? I never had any interactions with you in the forum, nor have I insulted you.

Quote

Does he believe people work for free to improve Bitcoin just so there is a new narrative to build on to push Bitcoin to six digits? People like those that work on RGB who put in their own free time and money to improve Bitcoin, make it more usable, faster, secure, to add more features like tokens - they don't do it just so some random investor can double his investment. These are genuine attempts to improve Bitcoin as a currency, as a means of payment and much more.

Sure, it can get more valuable if it's got more features, but please let's not always think 'price first' - that's what shitcoiners do. Adding whatever people find fun and cool so they pump their coin, then dump everything. Just about profit, no spirit of anarchistic independent money (often no nodes exist in those projects) or banking the unbanked.


I was merely suggesting Taro from a technological perspective, without the drama. Will it improve Bitcoin to be more than what it is today? Will it help onboard more users from other cryptocurrencies, from Ethereum perhaps? Will it be the next narrative during the next bull cycle? It was simply a shower-thought.

██████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
██████████████████████
.SHUFFLE.COM..███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
█████████████████████
████████████████████
██████████████████████
████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
██████████████████████
██████████████████████
██████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
███████████████████████
.
...Next Generation Crypto Casino...
n0nce
Hero Member
*****
Offline Offline

Activity: 882
Merit: 5818


not your keys, not your coins!


View Profile WWW
April 19, 2022, 12:40:06 PM
Merited by JayJuanGee (1)
 #1260

Ser, I would be lying if I said that I didn't care about Bitcoin's price. I did buy and HODL them as an investment first and foremost. Didn't anyone?

Plus what's with that tone? Why does it look like that you are always trying to make me look bad? I never had any interactions with you in the forum, nor have I insulted you.
It's just that I want improvements in Bitcoin simply for the sake of having a better payment system and not for the sake of making some investor bags of money. Sure, the value of Bitcoin is that it's such a good payment system, so that's part of the reason it has a high price. But this shouldn't be the main motivation for innovation. That's why a statement like 'this new technology will get btc to the moon' generally rubs me the wrong way.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Pages: « 1 ... 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 [63] 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!