create account

Lightning Addresses for EVERYONE on Hive! by brianoflondon

View this thread on: hive.blogpeakd.comecency.com
· @brianoflondon · (edited)
$302.67
Lightning Addresses for EVERYONE on Hive!
**WORKING AGAIN!**

I think it's all back to normal.... whatever normal actually is....


Earlier today 2022-05-20:

Coingeck's @coingecko 's API is still not working and I can't restart without it. Following this I will obviously work on adding another price service so I'm better prepared for this kind of thing.... living and learning!

Overnight Coingecko's API started going wrong and so I've got to clean up some stuff, all should be working again soon I hope.


-------

You know that thing on Twitter where people (mostly) in the US can receive BTC Lightning tips direct through Twitter?

Well now literally EVERY ACCOUNT ON HIVE can receive Lightning tips!

![untitled.gif](https://media.tenor.com/images/b7fc556c96a04f7c0fcd7f5ef141c4bc/tenor.gif)

If you like my work on bridging Lightning and Hive, please vote for my continuation proposal:

-------
**[Support Proposal 222 on PeakD](https://peakd.com/me/proposals/222)
[Support Proposal 222 with Hivesigner](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B222%5D&approve=true)
[Support Proposal 222 on Ecency](https://ecency.com/proposals/222)**
-------

You heard it right. Your very own human memorable Lightning Address looks just like this (yes it does look just like an email address):

## brianoflondon@v4v.app

Just replace `brianoflondon` with your own Hive account name. Any BTC lightning sent to that address will end up as Hive in your Hive account.

You can also get yourself a QR code like the one I have at the bottom of the page. 

This link will give you a QR code: just replace my hive account name with your own.

https://v4v.app/v1/lnurlp/qrcode/brianoflondon

You can save that image and put it anywhere.

***And a special shout out to all Hive Devs***: you can add "tip with Lightning" buttons to any Hive UI. You just need to call the api to generate the QR code (you can even cache this, it doesn't change!).

## Demo

![Hive Lightning Address demo](https://files.peakd.com/file/peakd-hive/brianoflondon/23vru2ncsSkGCTkzJpFr9mmw7a8jUiWsnRoc3NwngDCrhvPqfegfPSERqi87SiWLztPku.gif)

I've sped up the typing part but the rest of this is real speed. The wallet I'm using here is Breez which is a non-custodial wallet (meaning I really do hold the keys). There are custodial wallets which might shave a few seconds off the Lightning sending time.


## How it works

Behind the scenes there is quite a lot going on to make this happen.

As I've written extensively before, Lightning is not a blockchain based crypto system. Lightning can only be received by a Lightning Node which is online and working 24/7 and which has "channels" open to the rest of the Lightning Network.

So in order for you to "receive" Lightning on a static address, just as you can receive Hive on your username or BTC on an address you can generate, things get interesting.

### LNURL

What Lightning needed was a way to have a pointer to something on the web which could then generate a Lightning Invoice as a way to receive funds. I kind of built this from scratch myself in order for my [v4v.app](https://v4v.app/hive) system to receive Hive and send Lightning: behind the scenes I don't really just receive Lightning, I generate an invoice which a mobile wallet can pay.

### DIY was the way I learned

Having built this all from scratch myself, I then realised I had built most of the components I would need to implement something which has been growing in adoption on the Lightning Side: Lightning Addresses. [There's a fancy website to tell you all about this](https://lightningaddress.com/) and it gives you dozens of ways to grab a Lightning Address but almost all are custodial.

There is a way to set this up with your own node but it's seriously tedious work ([here's a 20 min video for you to plough through](https://youtu.be/15tFA9sZ-N0).

## The Flow

### Part 1 flow

The background for what is going on here is in this Github repo: [LNURL RFC](https://github.com/fiatjaf/lnurl-rfc). I'm specifically making use of LUD-01, LUD-06 and LUD-12

- LUD-01: Base LNURL encoding and decoding
- LUD-06: payRequest base spec
- LUD-12: Comments in payRequest.

<div class="pull-right">

![Zeus Wallet Lightning Address Payment screen](https://files.peakd.com/file/peakd-hive/brianoflondon/23wBgGgmqXnkhJp4WN6KZc6MtXAS4FGKXdDYrg8jSCum6RNtMn6KXKLQnvnrvKnUSZKUD.jpeg)

</div>

When a compatible Lightning wallet scans the QR Code I produce or a user types an address like `brianoflondon@v4v.app` into a compatible wallet they are presented with a screen like this screen from Zeus. There's a visual reminder of the destination (my avatar), space to enter an amount between 1,000 and 100,000 Sats and space for an optional comment.

### Part 1 technical

The Lightning Address is encoded in the QR Code as a BECH32 string and actually looks like this:

`lightning:LNURL1DP68GURN8GHJ7A35WCHXZURS9UH8WETVDSKKKMN0WAHZ7MRWW4EXCUP0VFEXJCTWDANXCMMWV3HKU64WYHS`

The `lightning:` prefix is mostly to help Mobile apps route these strings. On my iPhone, the Breez app grabs these strings automatically if the camera sees a QR code with this encoding. On Android the same thing happens but I believe you have the option to chose which app takes over.

The Lightning app then sends a `GET` request to the URL encoded in that string which is actually this:

[https://v4v.app/.well-known/lnurlp/brianoflondon](https://v4v.app/.well-known/lnurlp/brianoflondon) (you can click on it, you'll get some JSON).

If you manually type `brianoflondon@v4v.app` into a Lightning wallet as an address it just reorganizes that to make the same call.

That `GET` request returns a JSON which looks like something like this:

```
{
  "tag": "payRequest",
  "callback": "https://v4v.app/v1/lnurlp/callback/brianoflondon?no_image=true",
  "minSendable": 1000000,
  "maxSendable": 100000000,
  "metadata": "[[\"text/plain\", \"v4v.app Lightning to Hive @brianoflondon\"], [\"text/identifier\", \"brianoflondon@v4v.app\"], [\"text/long-desc\", \"Sending Lightning to Hive account: @brianoflondon\"]]",
  "commentAllowed": 1000
}
```

However I've actually excluded a big chunk of data from the `"metadata"` field because an encoded version of the Hive avatar is sent in there as well.

### Part 2 flow

The user can now be shown a range for the amount to send and an image to help identify where the payment is going: that's where I use the Hive avatar. The user can then add a comment and hit send, there will be one more confirmation and then the sats will be sent.

### Part 2 technical

The wallet app can now call the `"callback"` address with the parameters set by the user. When that happens my API generates a unique invoice specifically for this payment in the form of another BECH32 encoded string. This is the "regular" Lightning way of making exchanges of value.

Once the Wallet receives that invoice, it pays it.

### Part 3 Hive

From here on in the rest of my @v4vapp apparatus takes over. It watches incoming payments to my Lightning node and acts on them based on various metadata in the comment field and embedded in the Invoice itself (which my software generated in part 2 above). I receive the sats and immediately make a conversion to Hive and send the Hive out. That bit is generally quicker than the Lightning side.

[And the final result....](https://hive.ausbit.dev/tx/29943c8b5bcd7d909b8ac7333bcc80eff78208b4)

![You Got Hive!](https://files.peakd.com/file/peakd-hive/brianoflondon/23tSuc3DTYiptrZRjW9WJJPewV7Cwhntdo9uEsykt74WhrugAjfKREgVBtwxKTTLe4DCE.jpeg)


-------
**[Support Proposal 222 on PeakD](https://peakd.com/me/proposals/222)
[Support Proposal 222 with Hivesigner](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B222%5D&approve=true)
[Support Proposal 222 on Ecency](https://ecency.com/proposals/222)**
-------

<div class="pull-right">


![Send Lightning to Me!](https://files.peakd.com/file/peakd-hive/brianoflondon/AK3gcbmQA5oP28nnfgu5MiW8JCXw1XA6tYghwFWbSkPW2P6hXto5i7TDRTkPRVa.png)
</div>

- [Vote for APSHamilton's Witness KeyChain or HiveSigner](https://vote.hive.uno/@apshamilton)
- [Vote for APSHamilton's Witness direct with HiveSigner](https://hivesigner.com/sign/account-witness-vote?witness=apshamilton&approve=1)
- [Get Brave](https://brave.com/bri740)
- [Use my referral link for crypto.com](https://platinum.crypto.com/r/wkva2kezch) to sign up and we both get $25 USD
- [Sign up for BlockFi](https://blockfi.com/?ref=96f858b3)
- [Find my videos on 3speak](https://3speak.online/user/brianoflondon)
- [Join the JPBLiberty Class Action law suit](https://jpbliberty.formstack.com/forms/class_member_signup?Referral=brianoflondon)
- [Verify my ID and Send me a direct message on Keybase](https://keybase.io/brianoflondon)
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 934 others
๐Ÿ‘Ž  ,
properties (23)
authorbrianoflondon
permlinklightning-addresses-for-everyone-on-hive
categoryhive-110369
json_metadata"{"app":"peakd/2022.05.7","format":"markdown","description":"Anyone on Hive can receive tips and payment from Lightning Wallets!","tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"users":["coingecko","v4v.app","brianoflondon","v4vapp","apshamilton"],"image":["https://media.tenor.com/images/b7fc556c96a04f7c0fcd7f5ef141c4bc/tenor.gif","https://files.peakd.com/file/peakd-hive/brianoflondon/23vru2ncsSkGCTkzJpFr9mmw7a8jUiWsnRoc3NwngDCrhvPqfegfPSERqi87SiWLztPku.gif","https://files.peakd.com/file/peakd-hive/brianoflondon/23wBgGgmqXnkhJp4WN6KZc6MtXAS4FGKXdDYrg8jSCum6RNtMn6KXKLQnvnrvKnUSZKUD.jpeg","https://files.peakd.com/file/peakd-hive/brianoflondon/23tSuc3DTYiptrZRjW9WJJPewV7Cwhntdo9uEsykt74WhrugAjfKREgVBtwxKTTLe4DCE.jpeg","https://files.peakd.com/file/peakd-hive/brianoflondon/AK3gcbmQA5oP28nnfgu5MiW8JCXw1XA6tYghwFWbSkPW2P6hXto5i7TDRTkPRVa.png"]}"
created2022-05-19 10:04:45
last_update2022-05-20 11:29:27
depth0
children116
last_payout2022-05-26 10:04:45
cashout_time1969-12-31 23:59:59
total_payout_value151.450 HBD
curator_payout_value151.221 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,735
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,335,431
net_rshares475,159,443,507,434
author_curate_reward""
vote details (1000)
@acesontop ·
RE: Lightning Addresses for EVERYONE on Hive!
That's great. Will vote for your proposal when I get back on my laptop.

Posted using [LeoFinance Mobile](https://leofinance.io)
properties (22)
authoracesontop
permlinkthats-great-will-vote-for-yo-daxmahsyx8qbbqouu2xnofjyugsjdgys
categoryhive-110369
json_metadata{"app":"LeoFinance/android/0.9.0","format":"markdown"}
created2022-05-19 14:11:06
last_update2022-05-19 14:11:06
depth1
children0
last_payout2022-05-26 14:11:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation1,977,334,877,704,649
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd5,000
post_id113,340,266
net_rshares0
@acidyo ·
This some awesome stuff!
๐Ÿ‘  
properties (23)
authoracidyo
permlinkrc4l60
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 10:30:03
last_update2022-05-19 10:30:03
depth1
children0
last_payout2022-05-26 10:30:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation3,354,691,605,318,047
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,335,852
net_rshares0
author_curate_reward""
vote details (1)
@alphahippie ·
What about doing it in the opposite direction, say Hive to BTC?
properties (22)
authoralphahippie
permlinkre-brianoflondon-rq3mz6
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2023.2.2"}
created2023-02-15 01:55:18
last_update2023-02-15 01:55:18
depth1
children1
last_payout2023-02-22 01:55:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation1,641,765,582,734
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,789,605
net_rshares0
@brianoflondon ·
Done. V4v.app you send Hive to pay to Lightning. 
properties (22)
authorbrianoflondon
permlinkre-alphahippie-rq3rtn
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2023.2.2"}
created2023-02-15 03:46:36
last_update2023-02-15 03:46:36
depth2
children0
last_payout2023-02-22 03:46:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,791,403
net_rshares0
@ammonite.leo ·
Great work Brian. A very elegant solution. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@ammonite.leo/re-brianoflondon-6u8a2s)
properties (22)
authorammonite.leo
permlinkre-brianoflondon-6u8a2s
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@ammonite.leo/re-brianoflondon-6u8a2s"}
created2022-05-19 22:23:06
last_update2022-05-19 22:23:06
depth1
children0
last_payout2022-05-26 22:23:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation1,483,326,761,794
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,351,216
net_rshares0
@bearbear613 ·
$0.05
This is so cool! Thank you for helping to grow our ecosystem
๐Ÿ‘  
properties (23)
authorbearbear613
permlinkrc4tuw
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 13:37:42
last_update2022-05-19 13:37:42
depth1
children0
last_payout2022-05-26 13:37:42
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation292,487,584,391,852
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,339,530
net_rshares81,462,570,193
author_curate_reward""
vote details (1)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @brianoflondon, here is a little bit of <code>BEER</code> from @prinzvalium for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-brianoflondon-lightning-addresses-for-everyone-on-hive-20220520t062320734z
categoryhive-110369
json_metadata{"app":"beerlover/2.0"}
created2022-05-20 06:23:21
last_update2022-05-20 06:23:21
depth1
children0
last_payout2022-05-27 06:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length529
author_reputation25,811,409,448,698
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,358,695
net_rshares0
@bigtakosensei ·
This is next level stuffโ€ฆ appreciate these tools man ๐Ÿซก
properties (22)
authorbigtakosensei
permlinkre-brianoflondon-2022520t133833920z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-20 18:38:33
last_update2022-05-20 18:38:33
depth1
children0
last_payout2022-05-27 18:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation72,495,751,295,043
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,374,914
net_rshares0
@borsengelaber ·
Wow, thatโ€™s great! Will have to test it if it really works. ๐Ÿ‘๐Ÿป Excellent work.
๐Ÿ‘  , ,
properties (23)
authorborsengelaber
permlinkre-brianoflondon-2022519t123927299z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-19 10:39:27
last_update2022-05-19 10:39:27
depth1
children0
last_payout2022-05-26 10:39:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation330,951,081,318,616
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,336,006
net_rshares0
author_curate_reward""
vote details (3)
@candy49 ·
$0.13
So by using the Lightning address you can buy Hive with bitcoin without using an exchange, and it goes straight to your Hive account?

Does it work in reverse? Say you send Hive to the Lightning node and receive satoshis?
๐Ÿ‘  , , , ,
properties (23)
authorcandy49
permlinkrc5ooq
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-20 00:43:51
last_update2022-05-20 00:43:51
depth1
children0
last_payout2022-05-27 00:43:51
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.066 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation8,251,167,519,057
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,353,660
net_rshares214,709,221,574
author_curate_reward""
vote details (5)
@condeas ·
nice


![Screenshot_20220519-132552_Zeus.jpg](https://files.peakd.com/file/peakd-hive/condeas/23vhoQdfbFWv3qasZUctuqNpMkfbTE3yykmMMr1BDM6aFu4RqB7eXZ8q7FUaKGg4FxeGt.jpg)


๐Ÿ‘  , , , ,
properties (23)
authorcondeas
permlinkre-brianoflondon-rc4o7c
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 11:35:39
last_update2022-05-19 11:35:39
depth1
children2
last_payout2022-05-26 11:35:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation56,845,427,692,555
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,037
net_rshares0
author_curate_reward""
vote details (5)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @condeas, here is a little bit of <code>BEER</code> from @isnochys for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
properties (22)
authorbeerlover
permlinkre-condeas-re-brianoflondon-rc4o7c-20220519t211438788z
categoryhive-110369
json_metadata{"app":"beerlover/2.0"}
created2022-05-19 21:14:39
last_update2022-05-19 21:14:39
depth2
children0
last_payout2022-05-26 21:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length520
author_reputation25,811,409,448,698
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,349,680
net_rshares0
@isnochys ·
Thank you for your [witness vote](https://hivesigner.com/sign/account-witness-vote?witness=isnochys&approve=1)!
 Have a !BEER on me!
To Opt-Out of my witness beer program just comment !STOP below
properties (22)
authorisnochys
permlinkre-re-brianoflondon-rc4o7c-20220519t211317z
categoryhive-110369
json_metadata"{"app": "beem/0.24.26"}"
created2022-05-19 21:13:21
last_update2022-05-19 21:13:21
depth2
children0
last_payout2022-05-26 21:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation47,886,018,797,724
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,349,651
net_rshares0
@cpol ·
Thank you so much for this! This is the kind of work that makes HIVE to excel! I already support your proposal!!! Much success in your endeavors!!! I can't give much in gratitude but just a few tokens !PIZZA !PGM !LOLZ !CTP !HBIT

<center>
![cpol.png](https://files.peakd.com/file/peakd-hive/cpol/AK2FLSj8sTgu7PgsYfeRifp5bx5YcxVW6Bps3KJJXYDLVjqKs2fAMNew7257FvV.png)
</center>
properties (22)
authorcpol
permlinkre-brianoflondon-rc5lrq
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 23:42:48
last_update2022-05-19 23:42:48
depth1
children1
last_payout2022-05-26 23:42:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length375
author_reputation60,973,047,313,536
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,352,759
net_rshares0
@pgm-curator ·
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS - 0.01 MOTA - 0.05 DEC - 15 SBT tokens to @brianoflondon</center>

<center><sub>remaining commands 1</sub></center>


**BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!**

The tokens that the command sends are: 0.1 PGM-0.1 LVL-2.5 BUDS-0.01 MOTA-0.05 DEC-15 SBT-1 STARBITS-0.00000001 BTC (SWWAP.BTC)


![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)

Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn)



<sub>I'm a bot, if you want a hand ask @ zottone444</sub>

***
properties (22)
authorpgm-curator
permlinkpgm-curatorcpol1653003789194
categoryhive-110369
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2022-05-19 23:43:09
last_update2022-05-19 23:43:09
depth2
children0
last_payout2022-05-26 23:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,812
author_reputation3,409,490,822,394
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,352,769
net_rshares0
@davedickeyyall ·
$0.19
You know that thing on Twitter where people (mostly) in the US can receive BTC Lightning tips direct through Twitter?

Well now literally EVERY ACCOUNT ON HIVE can receive Lightning tips

This is the only part of this post that makes sense to me.. the rest is nerdery and jibberish.. but that's good.. we need more nerds building shit here.. great job. Proposal supported. 

!PIMP 

Think you can invent a !NERD token next? ๐Ÿคฃ๐Ÿ˜‚

๐Ÿ‘  , , , , , , ,
properties (23)
authordavedickeyyall
permlinkre-brianoflondon-rc4lvj
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 10:45:21
last_update2022-05-19 10:45:21
depth1
children8
last_payout2022-05-26 10:45:21
cashout_time1969-12-31 23:59:59
total_payout_value0.096 HBD
curator_payout_value0.096 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length428
author_reputation908,895,568,805,086
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,336,104
net_rshares304,911,769,153
author_curate_reward""
vote details (8)
@niallon11 ·
$0.04
We don't need to know how all tjses things work thanks God.
We just need to know that there are great Devs on hive that can make it happen for us.

Thanks Brian. This looks amazing. 
๐Ÿ‘  ,
properties (23)
authorniallon11
permlinkre-davedickeyyall-2022519t125956785z
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-19 11:59:57
last_update2022-05-19 11:59:57
depth2
children2
last_payout2022-05-26 11:59:57
cashout_time1969-12-31 23:59:59
total_payout_value0.021 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation628,261,358,027,240
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,483
net_rshares68,486,721,041
author_curate_reward""
vote details (2)
@beerlover ·
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @niallon11, here is a little bit of <code>BEER</code> from @davedickeyyall for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
๐Ÿ‘  , , ,
properties (23)
authorbeerlover
permlinkre-niallon11-re-davedickeyyall-2022519t125956785z-20220519t121423952z
categoryhive-110369
json_metadata{"app":"beerlover/2.0"}
created2022-05-19 12:14:24
last_update2022-05-19 12:14:24
depth3
children0
last_payout2022-05-26 12:14:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length528
author_reputation25,811,409,448,698
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,778
net_rshares0
author_curate_reward""
vote details (4)
@davedickeyyall ·
๐Ÿ‘๐Ÿ‘๐Ÿ‘

!BEER 
properties (22)
authordavedickeyyall
permlinkre-niallon11-rc4py0
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 12:13:12
last_update2022-05-19 12:13:12
depth3
children0
last_payout2022-05-26 12:13:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation908,895,568,805,086
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,760
net_rshares0
@taskmaster4450le ·
$0.34
You can receive Satoshis which get converted to HIVE which you can convert to HBD..

...which can be used to buy weed.

Skip the jibberish and get to the use cases.



Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@taskmaster4450le/re-davedickeyyall-6wlp55)
๐Ÿ‘  , , , ,
properties (23)
authortaskmaster4450le
permlinkre-davedickeyyall-6wlp55
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@taskmaster4450le/re-davedickeyyall-6wlp55"}
created2022-05-19 16:20:33
last_update2022-05-19 16:20:33
depth2
children3
last_payout2022-05-26 16:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.169 HBD
curator_payout_value0.168 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length275
author_reputation2,189,094,681,482,897
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,343,436
net_rshares534,675,634,510
author_curate_reward""
vote details (5)
@davedickeyyall ·
$0.02
Lol. Best explanation ever
๐Ÿ‘  ,
properties (23)
authordavedickeyyall
permlinkre-taskmaster4450le-rc59ny
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 19:19:09
last_update2022-05-19 19:19:09
depth3
children0
last_payout2022-05-26 19:19:09
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation908,895,568,805,086
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,347,414
net_rshares39,677,054,642
author_curate_reward""
vote details (2)
@ifarmgirl ·
This! I love how you summed it up for a cub to understand :)

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@ifarmgirl/re-taskmaster4450le-7tpqb7)
properties (22)
authorifarmgirl
permlinkre-taskmaster4450le-7tpqb7
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@ifarmgirl/re-taskmaster4450le-7tpqb7"}
created2022-05-20 00:33:27
last_update2022-05-20 00:33:27
depth3
children0
last_payout2022-05-27 00:33:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation1,106,978,570,072,917
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,353,480
net_rshares0
@thelogicaldude ·
$0.04
Lol! Yes you can buy some Weed products with HBD, lol. Now we can take your lightning too, lol. 

weedcash-store@v4v.app 
๐Ÿ‘  
properties (23)
authorthelogicaldude
permlinkre-taskmaster4450le-rc52cj
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 16:41:09
last_update2022-05-19 16:41:09
depth3
children0
last_payout2022-05-26 16:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation362,839,108,289,073
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,343,923
net_rshares63,283,588,302
author_curate_reward""
vote details (1)
@thepimpdistrict ·
<center>
<sup>You must be killin' it out here!</sup>
<sup>@davedickeyyall just slapped you with <b>1.000</b> <b>PIMP</b>, @brianoflondon.</sup>
<sup>You earned <b>1.000</b> <b>PIMP</b> for the strong hand.</sup>
<sup>They're getting a workout and slapped <b>1/2</b> possible people today.</sup>

<img src="https://images.hive.blog/DQmWH3SUfgfADfqzyyTQ1WhpeA3tS5PNo8gQYGeTzYVpqmA/PIMP.png" alt="pimp_logo">

---
<sup>[Read about some PIMP Shit](https://peakd.com/c/hive-111011) or [Look for the PIMP District](https://discord.gg/dptXZuj6K5)</sup>
</center>
properties (22)
authorthepimpdistrict
permlink20220519t104530397z
categoryhive-110369
json_metadata{"tags":["pimp","tokenpimp","pimpbot"],"app":"pimp-bot/4.0","format":"markdown"}
created2022-05-19 10:45:30
last_update2022-05-19 10:45:30
depth2
children0
last_payout2022-05-26 10:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length567
author_reputation12,322,979,192,632
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,336,109
net_rshares0
@drceeyou ·
> Lightning is not a blockchain based crypto system. 

I thought all crypto was based on the blockchain. Mehn, I got a lot to learn with this crypto thing.
๐Ÿ‘  , ,
properties (23)
authordrceeyou
permlinkre-brianoflondon-2022519t125737653z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-19 11:57:36
last_update2022-05-19 11:57:36
depth1
children2
last_payout2022-05-26 11:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation12,088,207,211,076
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,425
net_rshares0
author_curate_reward""
vote details (3)
@metzli ·
stick around, you'll learn and understand more and more every day. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@metzli/re-drceeyou-75oszl)
properties (22)
authormetzli
permlinkre-drceeyou-75oszl
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@metzli/re-drceeyou-75oszl"}
created2022-05-20 03:19:42
last_update2022-05-20 03:19:42
depth2
children1
last_payout2022-05-27 03:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation63,787,580,398,377
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,257
net_rshares0
@drceeyou ·
I'm sure gonna stick around

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@drceeyou/re-metzli-7jjc9h)
properties (22)
authordrceeyou
permlinkre-metzli-7jjc9h
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@drceeyou/re-metzli-7jjc9h"}
created2022-05-21 11:11:54
last_update2022-05-21 11:11:54
depth3
children0
last_payout2022-05-28 11:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation12,088,207,211,076
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,390,924
net_rshares0
@ecency ·
**Yay!** ๐Ÿค—<br>Your content has been **boosted with Ecency Points**, by @rmach. <br>Use Ecency daily to boost your growth on platform! <br><br><b>Support Ecency</b><br>[Vote for new Proposal](https://hivesigner.com/sign/update-proposal-votes?proposal_ids=%5B197%5D&approve=true)<br>[Delegate HP and earn more](https://ecency.com/hive-125125/@ecency/daily-100-curation-rewards)
properties (22)
authorecency
permlinkre-2022520t185028281z
categoryhive-110369
json_metadata{"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"}
created2022-05-20 18:50:30
last_update2022-05-20 18:50:30
depth1
children0
last_payout2022-05-27 18:50:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length375
author_reputation624,422,971,962,054
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,375,195
net_rshares0
@emeka4 ·
I appreciate every work you put to this which is really nice and awesome and also I have voted on your proposal as well to appreciate your good work.
properties (22)
authoremeka4
permlinkrc4kw1
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 10:24:06
last_update2022-05-19 10:24:06
depth1
children0
last_payout2022-05-26 10:24:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation234,766,945,326,470
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,335,753
net_rshares0
@ericvancewalton ·
Brilliant!
properties (22)
authorericvancewalton
permlinkrc4y7u
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 15:11:54
last_update2022-05-19 15:11:54
depth1
children0
last_payout2022-05-26 15:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,411,138,183,991,510
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,341,749
net_rshares0
@fabian98 ·
Bro you deserve a whole storm for this, congratulations for your excellent work.
properties (22)
authorfabian98
permlinkre-brianoflondon-rc6txt
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 15:32:12
last_update2022-05-20 15:32:12
depth1
children0
last_payout2022-05-27 15:32:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation317,540,777,933,517
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,369,941
net_rshares0
@finguru ·
You are the real MVP BOL. :')
properties (22)
authorfinguru
permlinkrc4qcj
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 12:21:57
last_update2022-05-19 12:21:57
depth1
children0
last_payout2022-05-26 12:21:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation358,211,814,021,785
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,921
net_rshares0
@finguru ·
What if I change my Profile Picture?
properties (22)
authorfinguru
permlinkrc4w79
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 14:28:24
last_update2022-05-19 14:28:24
depth1
children1
last_payout2022-05-26 14:28:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation358,211,814,021,785
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,340,654
net_rshares0
@brianoflondon ·
$1.02
You can regenerate a new QR and it'll put your new image in it.
๐Ÿ‘  ,
properties (23)
authorbrianoflondon
permlinkre-finguru-rc4xu8
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 15:03:45
last_update2022-05-19 15:03:45
depth2
children0
last_payout2022-05-26 15:03:45
cashout_time1969-12-31 23:59:59
total_payout_value0.512 HBD
curator_payout_value0.512 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,341,572
net_rshares1,612,691,439,285
author_curate_reward""
vote details (2)
@fragozar01 ·
$1.56
Greetings friend @brianoflondon pleased to say hello. I have been testing the lightning bridge, trying to send some satoshis to my wallet [Tippin.me](https://tippin.me/@RamonFragoza) but there has been no way for the application to take the invoice. In the image you can see the message it gives me every time I try.

>Saludos amigo @brianoflondon complacido de saludar. He estado probando el puente Lightning, tratando de enviar algunos satoshis a mi billetera [Tippin.me](https://tippin.me/@RamonFragoza) pero no ha habido manera de que la aplicacion me tome el invoice. En la imagen puedes ver el mensaje que me entrega cada vez que lo intento.

![image](https://images.ecency.com/DQmSaNG3ziwz7qnpVVuXB1kArziNDCWB5L2VFEqnsdgqP1d/image.png)

Now, I sent satoshis to my Hive account and this transaction was carried out without problems and very quickly. My question: what could be happening? Are there any restrictions with this wallet or something like that? Or am I doing it wrong? I know how to thank you very much for your support and help. Greetings.

>Ahora bien realice un enviรณ de satoshis a mi cuenta de Hive y esta transacciรณn se realizo sin problemas y muy rรกpido. Mi consulta: ยฟQue puede estar sucediendo? ยฟExiste alguna restricciรณn con esta billetera o algo por el estilo? ยฟO sera que lo estoy haciendo mal? Mucho sabre agradecer tu soporte y ayuda. Saludos.
๐Ÿ‘  ,
properties (23)
authorfragozar01
permlinkre-brianoflondon-202266t195855144z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-06 23:59:18
last_update2022-06-06 23:59:18
depth1
children2
last_payout2022-06-13 23:59:18
cashout_time1969-12-31 23:59:59
total_payout_value0.781 HBD
curator_payout_value0.781 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,373
author_reputation81,847,379,013,718
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,841,804
net_rshares2,604,262,625,845
author_curate_reward""
vote details (2)
@brianoflondon ·
Youโ€™re right my code has a problem with Tippin. Iโ€™ll look at this today and hopefully get it working. Thanks for finding this!
๐Ÿ‘  
properties (23)
authorbrianoflondon
permlinkre-fragozar01-rd3c0r
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.9"}
created2022-06-07 04:48:30
last_update2022-06-07 04:48:30
depth2
children1
last_payout2022-06-14 04:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,846,463
net_rshares10,121,758,102
author_curate_reward""
vote details (1)
@brianoflondon ·
Fixed it and it should be working with Tippin now. I sent you 2000 sats :-)
๐Ÿ‘  
properties (23)
authorbrianoflondon
permlinkre-brianoflondon-rd3d4k
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.9"}
created2022-06-07 05:12:21
last_update2022-06-07 05:12:21
depth3
children0
last_payout2022-06-14 05:12:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,846,837
net_rshares10,329,060,615
author_curate_reward""
vote details (1)
@franklin288 ·
Congratulations ๐Ÿ™Œ 
๐Ÿ‘Ž  
properties (23)
authorfranklin288
permlinkre-brianoflondon-2022526t131957918z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-26 12:19:57
last_update2022-05-26 12:19:57
depth1
children0
last_payout2022-06-02 12:19:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation901,707,134,101
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,532,477
net_rshares-2,759,389,122
author_curate_reward""
vote details (1)
@gadrian ·
Awesome work, Brian! You've got my vote. I also like how Taskmaster put it: Bitcoin's Lightning Network - 2nd layer for Hive. :)

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@gadrian/re-brianoflondon-7kyzmw)
properties (22)
authorgadrian
permlinkre-brianoflondon-7kyzmw
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@gadrian/re-brianoflondon-7kyzmw"}
created2022-05-20 15:10:18
last_update2022-05-20 15:10:18
depth1
children0
last_payout2022-05-27 15:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation642,831,013,067,672
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,369,357
net_rshares0
@gangstalking ·
5 years this has been happening to me, it started here, around people that are still here. Homeland security has done nothing at all, they are not here to protect us. Dont we pay them to stop shit like this? The NSA, CIA, FBI, Police and our Government has done nothing. Just like they did with the Havana Syndrome, nothing. Patriot Act my ass. The American government is completely incompetent. The NSA should be taken over by the military and contained Immediately for investigation. I bet we can get to the sources of V2K and RNM then. https://peakd.com/gangstalking/@acousticpulses/electronic-terrorism-and-gaslighting--if-you-downvote-this-post-you-are-part-of-the-problem
๐Ÿ‘Ž  
properties (23)
authorgangstalking
permlinkre-brianoflondon-lightning-addresses-for-everyone-on-hive-20220520t112934510z
categoryhive-110369
json_metadata{"app":"hive-bot/0.6.3"}
created2022-05-20 11:29:36
last_update2022-05-20 11:29:36
depth1
children0
last_payout2022-05-27 11:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length677
author_reputation-67,597,107,868,724
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,363,689
net_rshares-6,972,155,248
author_curate_reward""
vote details (1)
@headsink ·
Thank you for the great service. Now I can ask for tips easily ๐Ÿ˜‰

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@headsink/re-brianoflondon-6ovnmk)
properties (22)
authorheadsink
permlinkre-brianoflondon-6ovnmk
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@headsink/re-brianoflondon-6ovnmk"}
created2022-05-21 12:08:15
last_update2022-05-21 12:08:15
depth1
children0
last_payout2022-05-28 12:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation1,298,327,132,573
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,391,987
net_rshares0
@hivebuzz ·
Congratulations @brianoflondon! Your post has been a top performer on the Hive blockchain and you have been rewarded with the following badge:

<table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@brianoflondon) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-202205-15"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xwzanZE.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202205-15">Hive Power Up Month - Feedback from May - Day 15</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-brianoflondon-20220520t033311
categoryhive-110369
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-05-20 03:33:12
last_update2022-05-20 03:33:12
depth1
children0
last_payout2022-05-27 03:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length899
author_reputation369,403,396,566,762
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,459
net_rshares0
@hopestylist ·
You deserve to be voted as witness, which I just did. Thank you for sharing this with us dear. 
properties (22)
authorhopestylist
permlinkre-brianoflondon-rc4ree
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 12:44:39
last_update2022-05-19 12:44:39
depth1
children0
last_payout2022-05-26 12:44:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation508,394,525,769,927
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,338,356
net_rshares0
@ifarmgirl ·
That is amazing! Thank you for what you are doing and just voted for your proposal.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@ifarmgirl/re-brianoflondon-2m7rsd)
properties (22)
authorifarmgirl
permlinkre-brianoflondon-2m7rsd
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@ifarmgirl/re-brianoflondon-2m7rsd"}
created2022-05-20 00:33:57
last_update2022-05-20 00:33:57
depth1
children0
last_payout2022-05-27 00:33:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation1,106,978,570,072,917
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,353,493
net_rshares0
@ijatz ·
@brianoflondon, huge respects for your continuous and tireless work!!

I've tried just now to send some BTC to Hive, from a "Chivo" wallet, and it seems to not be compatible with my v4v.app LN address (nor its QR code version). It does recognize the address - a green check shows up when I type it - but when pressing the "next" button, nothing happens, contrarily to when the recipient is a LN contact added through his phone number.

Have you received feedback from "Strike" users, indicating that it does work on that app? 

properties (22)
authorijatz
permlinkre-brianoflondon-redfvo
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.9"}
created2022-07-02 02:21:33
last_update2022-07-02 02:21:33
depth1
children0
last_payout2022-07-09 02:21:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length528
author_reputation25,644,689,964,315
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,496,372
net_rshares0
@ismaelrd04 ·
Esta es una valiosa informaciรณn, muchas gracias por compartir
properties (22)
authorismaelrd04
permlinkre-brianoflondon-2022519t181746196z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-19 22:17:54
last_update2022-05-19 22:17:54
depth1
children0
last_payout2022-05-26 22:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation165,012,116,214,594
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,351,119
net_rshares0
@jfang003 ·
Wow, this is great news and it makes the process simple for everyone here on Hive. I think this is a great addition to the entire blockchain.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@jfang003/re-brianoflondon-e2pqz)
properties (22)
authorjfang003
permlinkre-brianoflondon-e2pqz
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@jfang003/re-brianoflondon-e2pqz"}
created2022-05-19 15:32:51
last_update2022-05-19 15:32:51
depth1
children0
last_payout2022-05-26 15:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation643,701,816,967,274
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,342,206
net_rshares0
@jongolson ·
Man....This is just awesome on so many levels!

Thank you for all the hard work you put into this community.  Appreciate you sir!
properties (22)
authorjongolson
permlinkre-brianoflondon-rc5sk5
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 02:07:18
last_update2022-05-20 02:07:18
depth1
children0
last_payout2022-05-27 02:07:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation1,953,970,349,307,640
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,355,076
net_rshares0
@josehany ·
AHHHH this is awesome!!!!
properties (22)
authorjosehany
permlinkrc6ujn
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-20 15:43:39
last_update2022-05-20 15:43:39
depth1
children0
last_payout2022-05-27 15:43:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation1,352,701,105,812,145
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,370,362
net_rshares0
@katerinaramm ·
Amazing news!
!LUV
properties (22)
authorkaterinaramm
permlinkrc560n
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 18:00:27
last_update2022-05-19 18:00:27
depth1
children1
last_payout2022-05-26 18:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation686,022,470,179,765
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,345,819
net_rshares0
@luvshares ·
@katerinaramm<sub>(1/1)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
properties (22)
authorluvshares
permlinkre-rc560n-20220519t180121z
categoryhive-110369
json_metadata"{"app": "beem/0.24.26"}"
created2022-05-19 18:01:21
last_update2022-05-19 18:01:21
depth2
children0
last_payout2022-05-26 18:01:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length560
author_reputation5,651,102,754,153
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,345,847
net_rshares0
@lasseehlers ·
This is very good work, I will use this in the future, thanks!

Posted using [LasseCash](https://www.lassecash.com/@lasseehlers/re-brianoflondon-l3dbkcsp)
๐Ÿ‘Ž  
properties (23)
authorlasseehlers
permlinkre-brianoflondon-l3dbkcsp
categoryhive-110369
json_metadata{"tags":["lassecash"],"format":"markdown","canonical_url":"https://www.lassecash.com/@lasseehlers/re-brianoflondon-l3dbkcsp","app":"lassecash/1.1.0"}
created2022-05-19 18:01:18
last_update2022-05-19 18:01:18
depth1
children0
last_payout2022-05-26 18:01:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation-19,472,348,203,940
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,345,846
net_rshares-430,465,091,315
author_curate_reward""
vote details (1)
@lemouth ·
The amount of work you did by yourself is impressive, especially as you started from scratch. That's super cool! Too bad I won't be able to connect to the CTT show tonight. 

Cheers!
properties (22)
authorlemouth
permlinkrc50bx
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-19 15:57:36
last_update2022-05-19 15:57:36
depth1
children0
last_payout2022-05-26 15:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length182
author_reputation338,011,164,701,274
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,342,871
net_rshares0
@manniman ·
Supported for sure.
properties (22)
authormanniman
permlinkre-brianoflondon-rc5jno
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 22:55:00
last_update2022-05-19 22:55:00
depth1
children0
last_payout2022-05-26 22:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation77,790,724,868,389
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,351,765
net_rshares0
@marbrym ·
This looks incredible, although reading all that confuses me, there are still many things I don't understand about Hive and the crypto world, I don't know much.

But what you show here looks awesome. I have to read it again in greater detail. Understanding how the funds can get to my Hive account, but from the side of the person giving the advice I don't quite understand that part of what to do. Maybe I read it too fast or got confused by so many things I don't understand. But it looks super fabulous, thank you very much @brianoflondon ๐Ÿ˜Ž
๐Ÿ‘  
properties (23)
authormarbrym
permlinkre-brianoflondon-2022519t81523279z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-19 12:15:24
last_update2022-05-19 12:15:24
depth1
children2
last_payout2022-05-26 12:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length544
author_reputation59,190,758,709,485
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,797
net_rshares0
author_curate_reward""
vote details (1)
@joeyarnoldvn ·
DO you understand how wiring money online works?
properties (22)
authorjoeyarnoldvn
permlinkrc5uh6
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-20 02:48:45
last_update2022-05-20 02:48:45
depth2
children1
last_payout2022-05-27 02:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation51,684,035,870,699
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,355,805
net_rshares0
@marbrym ·
Not reallyโค๏ธ
properties (22)
authormarbrym
permlinkre-joeyarnoldvn-2022519t232411690z
categoryhive-110369
json_metadata{"tags":["ecency"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-20 03:24:12
last_update2022-05-20 03:24:12
depth3
children0
last_payout2022-05-27 03:24:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation59,190,758,709,485
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,323
net_rshares0
@metzli ·
Just voted for your proposal!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@metzli/re-brianoflondon-32i8sv)
properties (22)
authormetzli
permlinkre-brianoflondon-32i8sv
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@metzli/re-brianoflondon-32i8sv"}
created2022-05-20 03:14:54
last_update2022-05-20 03:14:54
depth1
children0
last_payout2022-05-27 03:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation63,787,580,398,377
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,189
net_rshares0
@michelmake ·
Big step forwards for Hive today! Thanks a lot!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@michelmake/re-brianoflondon-3amzn8)
properties (22)
authormichelmake
permlinkre-brianoflondon-3amzn8
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@michelmake/re-brianoflondon-3amzn8"}
created2022-05-19 13:10:12
last_update2022-05-19 13:10:12
depth1
children0
last_payout2022-05-26 13:10:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation38,156,784,734,657
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,338,904
net_rshares0
@mintymile ·
Preety cool ah!! Congragulations!!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@mintymile/re-brianoflondon-6s893r)
๐Ÿ‘  
properties (23)
authormintymile
permlinkre-brianoflondon-6s893r
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@mintymile/re-brianoflondon-6s893r"}
created2022-06-07 13:36:42
last_update2022-06-07 13:36:42
depth1
children0
last_payout2022-06-14 13:36:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation87,354,869,349,775
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,856,348
net_rshares970,930,226
author_curate_reward""
vote details (1)
@nathanmars ·
$0.03
Thank you for this Brain. 

> Any BTC lightning sent to that address will end up as Hive in your Hive account

It worked perfectly for me :) 

![Screenshot 20220519 at 13.23.49.png](https://images.hive.blog/DQmd1ctdTfBc1Wo7i75vRZCaBULjPfftRCxdc23bjXF7i8z/Screenshot%202022-05-19%20at%2013.23.49.png)

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nathanmars/re-brianoflondon-4aym2u)
๐Ÿ‘  
properties (23)
authornathanmars
permlinkre-brianoflondon-4aym2u
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@nathanmars/re-brianoflondon-4aym2u","image":["https://images.hive.blog/DQmd1ctdTfBc1Wo7i75vRZCaBULjPfftRCxdc23bjXF7i8z/Screenshot%202022-05-19%20at%2013.23.49.png"]}
created2022-05-19 12:24:30
last_update2022-05-19 12:24:30
depth1
children9
last_payout2022-05-26 12:24:30
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length401
author_reputation336,354,946,115,368
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,974
net_rshares51,248,824,175
author_curate_reward""
vote details (1)
@finguru ·
You need to try it once more Nathan. Let's see if it works again. 


![image.png](https://images.hive.blog/DQmfSybyWvrCb3Vbfxo22mEsthzmRRedT999qx8ToZdjhMR/image.png)
๐Ÿ‘  
properties (23)
authorfinguru
permlinkrc4w2u
categoryhive-110369
json_metadata{"image":["https://images.hive.blog/DQmfSybyWvrCb3Vbfxo22mEsthzmRRedT999qx8ToZdjhMR/image.png"],"app":"hiveblog/0.1"}
created2022-05-19 14:25:45
last_update2022-05-19 14:25:45
depth2
children8
last_payout2022-05-26 14:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length165
author_reputation358,211,814,021,785
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,340,605
net_rshares14,967,794,697
author_curate_reward""
vote details (1)
@brianoflondon ·
$0.05
This is exactly why I put the avatar in the middle of these :-) Very important part of the plan!
๐Ÿ‘  ,
properties (23)
authorbrianoflondon
permlinkre-finguru-rc4x31
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 14:47:27
last_update2022-05-19 14:47:27
depth3
children5
last_payout2022-05-26 14:47:27
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,341,059
net_rshares83,341,151,562
author_curate_reward""
vote details (2)
@nathanmars ·
1777 Sats sent ๐Ÿคœ 
properties (22)
authornathanmars
permlinkre-finguru-rc6bh0
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 08:55:48
last_update2022-05-20 08:55:48
depth3
children1
last_payout2022-05-27 08:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation336,354,946,115,368
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,361,117
net_rshares0
@nickydee ·
RE: Lightning Addresses for EVERYONE on Hive!
> I think it's all back to normal.... whatever normal actually is....

๐Ÿ˜† Yeah.

Found it. Very clever!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nickydee/re-brianoflondon-4zug3h)
properties (22)
authornickydee
permlinkre-brianoflondon-4zug3h
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@nickydee/re-brianoflondon-4zug3h"}
created2022-10-18 06:05:48
last_update2022-10-18 06:05:48
depth1
children0
last_payout2022-10-25 06:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation165,252,091,273,298
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,562,797
net_rshares0
@nickydee ·
Show me normal and I'll give you a some HIVE.

Bit in awe of your abilities. Very cool! I'll follow along and learn some new things. ๐Ÿ‘
properties (22)
authornickydee
permlinkre-brianoflondon-rf80l8
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.9"}
created2022-07-18 14:36:45
last_update2022-07-18 14:36:45
depth1
children0
last_payout2022-07-25 14:36:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation165,252,091,273,298
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,959,026
net_rshares0
@olympicdragon ·
I shall definitely use this. I have a qr code, then I let people scan the code to pay me. Its so useful, I will try it out when I send this comment !
๐Ÿ‘  , , ,
properties (23)
authorolympicdragon
permlinkre-brianoflondon-2022519t18250257z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-19 10:25:00
last_update2022-05-19 10:25:00
depth1
children1
last_payout2022-05-26 10:25:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation34,659,922,596,582
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,335,778
net_rshares0
author_curate_reward""
vote details (4)
@metzli ·
How did it go?

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@metzli/re-olympicdragon-7q7zsv)
properties (22)
authormetzli
permlinkre-olympicdragon-7q7zsv
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@metzli/re-olympicdragon-7q7zsv"}
created2022-05-20 03:15:36
last_update2022-05-20 03:15:36
depth2
children0
last_payout2022-05-27 03:15:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation63,787,580,398,377
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,201
net_rshares0
@pastzam ·
Well my friend!!! lets try this out!!!

![image.png](https://images.hive.blog/DQmbknvzDVpLZdtpVDxxA1ChrpuHPbSoQLPJRVvsyNFBgRp/image.png)
properties (22)
authorpastzam
permlinkrc5cdt
categoryhive-110369
json_metadata{"image":["https://images.hive.blog/DQmbknvzDVpLZdtpVDxxA1ChrpuHPbSoQLPJRVvsyNFBgRp/image.png"],"app":"hiveblog/0.1"}
created2022-05-19 20:17:54
last_update2022-05-19 20:17:54
depth1
children0
last_payout2022-05-26 20:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation2,315,182,613,022
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,348,376
net_rshares0
@pizzabot ·
<center>PIZZA! 


PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
@cpol<sub>(3/5)</sub> tipped @brianoflondon (x1)


<sub>You can now send $PIZZA tips in <a href="https://discord.gg/hivepizza">Discord</a> via tip.cc!</sub></center>
properties (22)
authorpizzabot
permlinkre-lightning-addresses-for-everyone-on-hive-20220519t234408z
categoryhive-110369
json_metadata"{"app": "beem/0.24.26"}"
created2022-05-19 23:44:09
last_update2022-05-19 23:44:09
depth1
children0
last_payout2022-05-26 23:44:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation7,592,128,870,682
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,352,794
net_rshares0
@pnc ·
Proposal voted!
properties (22)
authorpnc
permlinkre-brianoflondon-2022519t175138348z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-19 21:51:36
last_update2022-05-19 21:51:36
depth1
children0
last_payout2022-05-26 21:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation31,760,797,277,823
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,350,540
net_rshares0
@poshtoken · (edited)
$1.12
https://twitter.com/KillerO7/status/1527243371139543041
https://twitter.com/EoinCarroll50/status/1527257061859409920
https://twitter.com/manuphotos_/status/1527266015612223488
https://twitter.com/theebobm/status/1527284221353504768
https://twitter.com/3speakonline/status/1527284314899095553
https://twitter.com/dudeontheweb/status/1527297604018577412
https://twitter.com/EnjarGames/status/1527319865924591617
https://twitter.com/taskmaster4450/status/1527323586834608130
https://twitter.com/HiveTrending/status/1527325093944209411
https://twitter.com/hive_blockchain/status/1527338094176788494
https://twitter.com/RealManniMan/status/1527422754592636930
https://twitter.com/GisetSam/status/1527432570828472336
https://twitter.com/cpolsilver/status/1527436983743791104
https://twitter.com/DocumentingHive/status/1527553016274239490
https://twitter.com/NathanMars7/status/1527570935729078272
https://twitter.com/steevc/status/1527579722309328900
https://twitter.com/thaddeusPrime/status/1527760062197923841
https://twitter.com/Raicelys_Gomez/status/1528028201246769156
https://twitter.com/Steemadi_/status/1550120714845704198
<sub> The rewards earned on this comment will go directly to the people( @steemadi ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
๐Ÿ‘  , , , , ,
properties (23)
authorposhtoken
permlinkre-brianoflondon-lightning-addresses-for-everyone-on-hive86287
categoryhive-110369
json_metadata"{"app":"Poshtoken 0.0.1","payoutToUser":["steemadi"]}"
created2022-05-19 11:09:57
last_update2022-07-21 14:09:27
depth1
children0
last_payout2022-05-26 11:09:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value1.115 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,325
author_reputation5,550,289,984,297,163
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries
0.
accountreward.app
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id113,336,569
net_rshares3,512,257,255,796
author_curate_reward""
vote details (6)
@prinzvalium ·
Wow, that's cool ๐Ÿ˜Ž
https://media.giphy.com/media/nFFguNjdeotwc/giphy.gif
!BEER
properties (22)
authorprinzvalium
permlinkre-brianoflondon-rc64ip
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 06:22:03
last_update2022-05-20 06:22:03
depth1
children0
last_payout2022-05-27 06:22:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation94,983,278,777,634
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,358,660
net_rshares0
@prinzvalium ·
Very cool. Send me some sats :-)

![image.png](https://files.peakd.com/file/peakd-hive/prinzvalium/AK2FNHnsn8G7BzyafaPBZwHEktzNDhad6CCjM4JdDinc1hFFiYEcmuLUgVagmvS.png)
properties (22)
authorprinzvalium
permlinkre-brianoflondon-rc64od
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 06:25:27
last_update2022-05-20 06:25:27
depth1
children0
last_payout2022-05-27 06:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation94,983,278,777,634
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,358,718
net_rshares0
@prinzvalium · (edited)
$0.57
Hello Brian, there seems to be a  bug in your code. I received multiple HIVE payments for a single lightning transmission.

![image.png](https://files.peakd.com/file/peakd-hive/prinzvalium/23tcNzkBBdPs3N6aVPNesrGygEMo3BHrw6zTDcxQB7awuPib4mLTLFnHv22LQe9gJUpxh.png)
๐Ÿ‘  ,
properties (23)
authorprinzvalium
permlinkre-brianoflondon-rc68ix
categoryhive-110369
json_metadata{"tags":"hive-110369"}
created2022-05-20 07:48:36
last_update2022-05-20 07:53:33
depth1
children5
last_payout2022-05-27 07:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.284 HBD
curator_payout_value0.284 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation94,983,278,777,634
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,360,051
net_rshares919,666,671,100
author_curate_reward""
vote details (2)
@brianoflondon ·
Yes! Coingeko's API has broken and this has caused my code to malfunction. I've turned everything off right now and will try to work out what's going on. and fix.
properties (22)
authorbrianoflondon
permlinkre-prinzvalium-rc68tg
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 07:58:33
last_update2022-05-20 07:58:33
depth2
children4
last_payout2022-05-27 07:58:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,360,163
net_rshares0
@prinzvalium ·
$0.31
I send you the Hive I received later
๐Ÿ‘  
properties (23)
authorprinzvalium
permlinkre-brianoflondon-rc6a73
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 08:28:15
last_update2022-05-20 08:28:15
depth3
children3
last_payout2022-05-27 08:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.157 HBD
curator_payout_value0.157 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation94,983,278,777,634
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,360,622
net_rshares508,602,841,188
author_curate_reward""
vote details (1)
@randr10 ·
You're a freaking genius dude. This is exactly what Hive has needed for the longest time. Thank you, thank you, thank you.
properties (22)
authorrandr10
permlinkre-brianoflondon-2022524t95426374z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-24 13:54:27
last_update2022-05-24 13:54:27
depth1
children0
last_payout2022-05-31 13:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation20,320,370,585,417
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,472,661
net_rshares0
@renovatio ·
Supported, amazing stuff, well done
properties (22)
authorrenovatio
permlinkrc6x6z
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-20 16:45:00
last_update2022-05-20 16:45:00
depth1
children0
last_payout2022-05-27 16:45:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation8,775,121,044,882
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,371,984
net_rshares0
@repayme4568 ·
This is a great work, thank you for making it happens real good ๐Ÿค—
๐Ÿ‘  
properties (23)
authorrepayme4568
permlinkre-brianoflondon-2022519t125340544z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-19 11:56:06
last_update2022-05-19 11:56:06
depth1
children0
last_payout2022-05-26 11:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation122,309,046,126,611
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,393
net_rshares0
author_curate_reward""
vote details (1)
@rzc24-nftbbg ·
Wondering what's your referral code for crypto.com?
properties (22)
authorrzc24-nftbbg
permlinkre-brianoflondon-202269t21717903z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-09 09:17:21
last_update2022-06-09 09:17:21
depth1
children2
last_payout2022-06-16 09:17:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation130,072,009,133,970
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,907,066
net_rshares0
@brianoflondon ·
Use my referral link https://crypto.com/app/wkva2kezch to sign up for Crypto.com and we both get $25 USD :)

Here you go. 
properties (22)
authorbrianoflondon
permlinkre-rzc24-nftbbg-rd7ely
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.9"}
created2022-06-09 09:34:48
last_update2022-06-09 09:34:48
depth2
children1
last_payout2022-06-16 09:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,907,274
net_rshares0
@rzc24-nftbbg ·
Thanks! I hope I am doing it right this time. 
properties (22)
authorrzc24-nftbbg
permlinkre-brianoflondon-202269t31413588z
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-09 10:14:15
last_update2022-06-09 10:14:15
depth3
children0
last_payout2022-06-16 10:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation130,072,009,133,970
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,907,829
net_rshares0
@shainemata ·
I couldn't get shainemata@v4v.app to work with Strike. However, invoicing through v4v does work with Strike. I'll have to play with another Lightning wallet. 

This is the bridge to HIVE I have been waiting for. I look forward to seeing the platform scale. Although, this alone is huge. 
properties (22)
authorshainemata
permlinkre-brianoflondon-2022519t85139696z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-19 13:51:39
last_update2022-05-19 13:51:39
depth1
children0
last_payout2022-05-26 13:51:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation32,734,008,898,342
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,339,811
net_rshares0
@soyrosa ·
This is really awesome! Thanks for working int his :D
properties (22)
authorsoyrosa
permlinkre-brianoflondon-rc4pdg
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 12:00:54
last_update2022-05-19 12:00:54
depth1
children0
last_payout2022-05-26 12:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation335,707,483,911,582
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,337,510
net_rshares0
@stayoutoftherz ·
Absolutely brilliant!

Now we just have to wait until the BTC Lightning network becomes useful :)
properties (22)
authorstayoutoftherz
permlinkre-brianoflondon-rc4uxi
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 14:00:54
last_update2022-05-19 14:00:54
depth1
children0
last_payout2022-05-26 14:00:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation1,336,517,510,173,107
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,340,025
net_rshares0
@stevenson7 ·
Really awesome

I did wonder if one could tip accounts with btc here like we do hive.

But doesn't it defeat the purpose? ๐Ÿค”
๐Ÿ‘  
properties (23)
authorstevenson7
permlinkre-brianoflondon-2022519t114437524z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-19 10:44:36
last_update2022-05-19 10:44:36
depth1
children0
last_payout2022-05-26 10:44:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation251,299,899,455,975
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,336,090
net_rshares0
author_curate_reward""
vote details (1)
@stevenson7 ·
This is too cool.

I used the lightning the other. Super fast.
properties (22)
authorstevenson7
permlinkre-brianoflondon-2022525t101620228z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-25 09:16:21
last_update2022-05-25 09:16:21
depth1
children0
last_payout2022-06-01 09:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation251,299,899,455,975
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,496,239
net_rshares0
@thaddeusprime ·
This is pretty cool!

![image.png](https://files.peakd.com/file/peakd-hive/thaddeusprime/AJkTo8CjuJ2YkEdhWhH1qTUp2F7vpqTVmc6eYCiH1JE6Hjpk8WKKiTtJJoYwNoc.png)
properties (22)
authorthaddeusprime
permlinkre-brianoflondon-rc79ef
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 21:08:39
last_update2022-05-20 21:08:39
depth1
children0
last_payout2022-05-27 21:08:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation3,279,448,304,336
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,378,530
net_rshares0
@the13anarchist ·
This is amazing @brianoflondon! I can't imagine how tedious and how long it must have taken you to do all of the coding for this!
properties (22)
authorthe13anarchist
permlinkre-brianoflondon-s4gdhf
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2023.10.1"}
created2023-11-21 02:56:03
last_update2023-11-21 02:56:03
depth1
children0
last_payout2023-11-28 02:56:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation29,261,651,035,845
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id129,041,012
net_rshares0
@thebalanceguy ·
Thanks for all your hard work on this project @brianoflondon :-)
I think this is a great feature that will help the community keep moving forward as more people adopt micro payments and tipping using the LN. Your proposal has a vote from me!
properties (22)
authorthebalanceguy
permlinkre-brianoflondon-2022525t15013222z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-05-25 14:00:12
last_update2022-05-25 14:00:12
depth1
children0
last_payout2022-06-01 14:00:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length241
author_reputation8,422,660,186,394
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,501,920
net_rshares0
@thebtcadvantage ·
$0.33
holy crap this is so cool!
๐Ÿ‘  
properties (23)
authorthebtcadvantage
permlinkrc6vix
categoryhive-110369
json_metadata{"app":"hiveblog/0.1"}
created2022-05-20 16:09:03
last_update2022-05-20 16:09:03
depth1
children0
last_payout2022-05-27 16:09:03
cashout_time1969-12-31 23:59:59
total_payout_value0.165 HBD
curator_payout_value0.165 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation432,583,603,076
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,371,009
net_rshares533,571,303,068
author_curate_reward""
vote details (1)
@theguruasia ·
$WINE
properties (22)
authortheguruasia
permlinkre-brianoflondon-rc5wxu
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 03:41:54
last_update2022-05-20 03:41:54
depth1
children1
last_payout2022-05-27 03:41:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation72,573,039,033,926
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,576
net_rshares0
@wine.bot ·
<center>
<sup>Congratulations, @theguruasia You Successfully Shared <b>0.300</b> <b>WINEX</b> With @brianoflondon.</sup>
<sup>You Earned <b>0.300</b> <b>WINEX</b> As Curation Reward.</sup>
<sup>You Utilized <b>3/3</b> Successful Calls.</sup>

<img src="https://images.hive.blog/DQmSWfbie9MTC172sENiA16bsMaz1ofT6AAyTo1ishasrcX/winexcomment.png" alt="wine_logo">

---
<sup>Contact Us : [WINEX Token Discord Channel](https://discord.gg/rS3KzjJDCx)</sup>
<sup>[WINEX Current Market Price](https://hive-engine.com/?p=market&t=WINEX) : <b>0.152</b></sup>
---
<sup>Swap Your <b>Hive <=> Swap.Hive</b> With Industry <b>Lowest Fee (0.1%)</b> : [Click This Link](https://swaphive.github.io/swap/)</sup>
<sup>[Read Latest Updates](https://peakd.com/@hiveupme/posts) Or [Contact Us](https://discord.gg/rS3KzjJDCx)</sup>
</center>
properties (22)
authorwine.bot
permlink20220520t034216757z
categoryhive-110369
json_metadata{"tags":["wine","token","winebot"],"app":"wine-bot/4.0","format":"markdown"}
created2022-05-20 03:42:15
last_update2022-05-20 03:42:15
depth2
children0
last_payout2022-05-27 03:42:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length832
author_reputation8,656,058,035,409
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,356,580
net_rshares0
@thelogicaldude ·
This is freaking EPIC!!! We need got all use these addresses on Twitter for our usernames! Changing mine now actually!

![untitled.gif](https://media.tenor.com/images/1d872ba2233b727c42f01d4632a13fe0/tenor.gif)
properties (22)
authorthelogicaldude
permlinkre-brianoflondon-rc510c
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 16:12:12
last_update2022-05-19 16:12:12
depth1
children0
last_payout2022-05-26 16:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation362,839,108,289,073
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,343,260
net_rshares0
@thelogicaldude ·
Questionโ€ฆ How would we approve the invoice on our endโ€ฆ For instance I attempted to send from Cash app and they require an invoice approval. 

I am going to try again from my Blue wallet which is non custodial to see how it reacts there. 

Just something I ran intoโ€ฆ
properties (22)
authorthelogicaldude
permlinkre-brianoflondon-rc529g
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 16:39:18
last_update2022-05-19 16:39:18
depth1
children0
last_payout2022-05-26 16:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length265
author_reputation362,839,108,289,073
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,343,878
net_rshares0
@themarkymark ·
This is pretty cool, I am curious how much it ends up getting used.
๐Ÿ‘Ž  
properties (23)
authorthemarkymark
permlinkre-brianoflondon-rc5oyc
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 00:49:21
last_update2022-05-20 00:49:21
depth1
children0
last_payout2022-05-27 00:49:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation1,779,457,996,919,720
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,353,746
net_rshares-2,337,757,507
author_curate_reward""
vote details (1)
@themarkymark ·
Is there a % cut from what is tipped outside of transaction fees?
๐Ÿ‘Ž  
properties (23)
authorthemarkymark
permlinkre-brianoflondon-rc5qsv
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 01:29:15
last_update2022-05-20 01:29:15
depth1
children1
last_payout2022-05-27 01:29:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation1,779,457,996,919,720
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,354,305
net_rshares-2,436,144,541
author_curate_reward""
vote details (1)
@brianoflondon ·
I'm taking 200 sats + 0.8% per transaction. That's about as low as I think it should be. I'm taking rates from Coingeko.
properties (22)
authorbrianoflondon
permlinkre-themarkymark-rc6oa7
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-20 13:32:33
last_update2022-05-20 13:32:33
depth2
children0
last_payout2022-05-27 13:32:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation760,655,352,092,696
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,366,742
net_rshares0
@tobetada ·
amazing, thanks!

@tipu curate
properties (22)
authortobetada
permlinkre-brianoflondon-rc4uxg
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 14:00:51
last_update2022-05-19 14:00:51
depth1
children1
last_payout2022-05-26 14:00:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation599,713,618,024,140
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,340,023
net_rshares0
@tipu ·
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted  &#128076;</a> (Mana: 9/39) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-brianoflondon-rc4uxg-20220519t140059z
categoryhive-110369
json_metadata"{"app": "beem/0.24.26"}"
created2022-05-19 14:00:57
last_update2022-05-19 14:00:57
depth2
children0
last_payout2022-05-26 14:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation55,935,276,290,772
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,340,026
net_rshares0
@tokenizedsociety ·
This is great news! Thanks for doing and sharing it!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@tokenizedsociety/re-brianoflondon-73pt5v)
properties (22)
authortokenizedsociety
permlinkre-brianoflondon-73pt5v
categoryhive-110369
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@tokenizedsociety/re-brianoflondon-73pt5v"}
created2022-05-24 01:06:12
last_update2022-05-24 01:06:12
depth1
children0
last_payout2022-05-31 01:06:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation129,668,072,799,729
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,460,024
net_rshares0
@tydynrain ·
This is absolutely amazing work! Thank you ***so*** much for your brilliant contribution to our glorious ***Hive Blockchain***! 

![img_0.5611251430334441](https://images.ecency.com/DQmVvaECQLaEh31e9yycDgcRQ5B2oTqTrsgeVgqvoDSvv1J/img_0.5611251430334441.jpg)


properties (22)
authortydynrain
permlinkre-brianoflondon-2022716t105422481z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-16 20:54:24
last_update2022-07-16 20:54:24
depth1
children0
last_payout2022-07-23 20:54:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length260
author_reputation204,522,621,800,995
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,916,614
net_rshares0
@ura-soul ·
Good work! It would be interesting to see this integrated clearly into onboarding processes to make initial power ups of new accounts more efficient.
properties (22)
authorura-soul
permlinkre-brianoflondon-rc5izc
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.7"}
created2022-05-19 22:40:24
last_update2022-05-19 22:40:24
depth1
children0
last_payout2022-05-26 22:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation844,446,720,477,395
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,351,531
net_rshares0
@vikvitnik ·
*This is really amazing! Congratz!* ๐Ÿ’œ
๐Ÿ‘  
properties (23)
authorvikvitnik
permlinkre-brianoflondon-rcyd0y
categoryhive-110369
json_metadata{"tags":["hive-110369"],"app":"peakd/2022.05.9"}
created2022-06-04 12:22:09
last_update2022-06-04 12:22:09
depth1
children0
last_payout2022-06-11 12:22:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation230,380,381,785,264
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,775,920
net_rshares13,126,217,464
author_curate_reward""
vote details (1)
@weone ·
Wow, this is some amazing work Brian. I'll keep tabs on this project, your work will be supported. Keep going mate!!!
properties (22)
authorweone
permlinkre-brianoflondon-2022716t2145578z
categoryhive-110369
json_metadata{"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-16 16:15:57
last_update2022-07-16 16:15:57
depth1
children0
last_payout2022-07-23 16:15:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation8,803,381,691,355
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,911,173
net_rshares0
@xplosive ·
Can this (or anything similar) be used by exchanges as a transfer method, when people buy/sell Hive and/or Hive Dollars (HBD)?
properties (22)
authorxplosive
permlinkre-brianoflondon-2022519t192952823z
categoryhive-110369
json_metadata{"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"}
created2022-05-19 17:29:54
last_update2022-05-19 17:29:54
depth1
children0
last_payout2022-05-26 17:29:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation209,193,118,674,967
root_title"Lightning Addresses for EVERYONE on Hive!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id113,344,995
net_rshares0