**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!  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  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">  </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)  ------- **[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">  </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)
author | brianoflondon |
---|---|
permlink | lightning-addresses-for-everyone-on-hive |
category | hive-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"]}" |
created | 2022-05-19 10:04:45 |
last_update | 2022-05-20 11:29:27 |
depth | 0 |
children | 116 |
last_payout | 2022-05-26 10:04:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 151.450 HBD |
curator_payout_value | 151.221 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,735 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,335,431 |
net_rshares | 475,159,443,507,434 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 15,482,251,570,713 | 10% | ||
steemychicken1 | 0 | 2,437,917,667,910 | 100% | ||
boatymcboatface | 0 | 139,793,943,128 | 8% | ||
pnc | 0 | 133,283,013,434 | 100% | ||
onealfa | 0 | 855,190,138,127 | 85% | ||
kingscrown | 0 | 17,333,037,671 | 8% | ||
acidyo | 0 | 9,752,878,327,167 | 100% | ||
oaldamster | 0 | 154,678,079,131 | 100% | ||
leprechaun | 0 | 1,049,492,548 | 50% | ||
theshell | 0 | 37,454,356,678 | 8% | ||
schro | 0 | 2,208,980,053 | 100% | ||
gerber | 0 | 8,227,807,769 | 5% | ||
ericvancewalton | 0 | 398,921,409,423 | 100% | ||
good-karma | 0 | 39,147,063,163 | 5.88% | ||
daan | 0 | 52,243,287,099 | 8% | ||
ezzy | 0 | 279,891,124 | 5% | ||
rxhector | 0 | 9,674,070,064 | 35% | ||
ausbitbank | 0 | 1,585,413,980,724 | 100% | ||
ssjsasha | 0 | 413,147,917,398 | 100% | ||
senseiteekay | 0 | 133,085,567 | 100% | ||
jeffjagoe | 0 | 13,208,853,779 | 1% | ||
dwinblood | 0 | 2,086,579,373 | 37.5% | ||
donatello | 0 | 89,787,360,443 | 100% | ||
renovatio | 0 | 21,864,300,274 | 100% | ||
inertia | 0 | 2,468,467,554,635 | 100% | ||
kendewitt | 0 | 184,063,179,132 | 100% | ||
fiona777 | 0 | 0 | 100% | ||
exyle | 0 | 44,682,632,153 | 5% | ||
alz190 | 0 | 981,923,521 | 25% | ||
drbec | 0 | 157,129,464 | 100% | ||
felixxx | 0 | 1,686,532,868,207 | 100% | ||
jphamer1 | 0 | 6,089,802,157,256 | 100% | ||
velourex | 0 | 10,085,201,375 | 100% | ||
randomblock1 | 0 | 1,023,303,778 | 16.5% | ||
crosheille | 0 | 301,091,406,217 | 100% | ||
bryan-imhoff | 0 | 539,239,795,029 | 50% | ||
rmach | 0 | 8,013,458,652 | 100% | ||
frankbacon | 0 | 48,969,413,349 | 100% | ||
theb0red1 | 0 | 64,199,632,902 | 20% | ||
lemouth | 0 | 1,347,146,002,814 | 60% | ||
stevescoins | 0 | 904,289,804 | 10% | ||
themanualbot | 0 | 682,884,431 | 25% | ||
steevc | 0 | 913,574,836,835 | 40% | ||
lasseehlers | 0 | 4,258,048,821 | 100% | ||
mattclarke | 0 | 682,292,377,156 | 100% | ||
daveks | 0 | 1,507,923,034,711 | 21% | ||
penguinpablo | 0 | 259,056,616,589 | 12% | ||
freeforever | 0 | 780,517,582,821 | 100% | ||
wakeupnd | 0 | 96,840,393,105 | 50% | ||
tftproject | 0 | 499,229,053 | 3% | ||
jimbobbill | 0 | 3,345,979,966 | 15% | ||
randr10 | 0 | 47,028,713,013 | 100% | ||
doitvoluntarily | 0 | 32,267,571,352 | 100% | ||
yetaras | 0 | 75,403,933,269 | 36.8% | ||
boxcarblue | 0 | 234,617,566,617 | 100% | ||
whatsup | 0 | 394,529,865,958 | 100% | ||
funnyman | 0 | 1,129,043,738 | 4.8% | ||
rynow | 0 | 94,323,810,838 | 30% | ||
ssekulji | 0 | 35,332,474,070 | 100% | ||
networkallstar | 0 | 21,546,260,237 | 100% | ||
ura-soul | 0 | 11,155,872,448 | 10% | ||
me-we | 0 | 10,609,016,432 | 90% | ||
gamer00 | 0 | 429,094,064,330 | 100% | ||
nonameslefttouse | 0 | 2,623,619,451,585 | 100% | ||
dragosroua | 0 | 213,870,080,225 | 100% | ||
imwatsi | 0 | 16,475,580,405 | 100% | ||
esteemapp | 0 | 8,768,899,214 | 5.88% | ||
bigtakosensei | 0 | 95,581,548,889 | 100% | ||
walterjay | 0 | 1,097,676,247,799 | 100% | ||
generikat | 0 | 340,180,826,320 | 50% | ||
v4vapid | 0 | 8,623,282,085,129 | 55% | ||
darynka | 0 | 1,051,211,444 | 18.4% | ||
deadspace | 0 | 168,415,220,736 | 100% | ||
automaton | 0 | 16,656,537,121 | 100% | ||
headsink | 0 | 767,925,093 | 100% | ||
cpol | 0 | 61,287,642,520 | 100% | ||
tarazkp | 0 | 1,619,315,168,517 | 25% | ||
privex | 0 | 11,105,430,996 | 10% | ||
niwrah | 0 | 5,981,813,546 | 100% | ||
ambyr00 | 0 | 56,523,697,027 | 15% | ||
teammo | 0 | 167,340,035,009 | 100% | ||
pouchon | 0 | 615,193,711,030 | 22.5% | ||
borislavzlatanov | 0 | 9,151,999,744 | 100% | ||
danielsaori | 0 | 817,365,175,195 | 100% | ||
trafalgar | 0 | 19,768,820,107,001 | 44% | ||
eirik | 0 | 2,290,777,848 | 100% | ||
louisthomas | 0 | 123,480,918,584 | 100% | ||
connecteconomy | 0 | 8,239,745,857 | 100% | ||
freebornsociety | 0 | -1,210,328,085 | -8% | ||
elevator09 | 0 | 164,157,248,590 | 100% | ||
venomnymous | 0 | 48,908,394,324 | 100% | ||
detlev | 0 | 60,714,099,837 | 5.5% | ||
pastzam | 0 | 309,840,478,229 | 41% | ||
raindrop | 0 | 315,511,512,801 | 44% | ||
ocisly | 0 | 11,102,159,812 | 100% | ||
imperfect-one | 0 | 11,656,825,765 | 100% | ||
l337m45732 | 0 | 11,475,156,971 | 20% | ||
passion-fruit | 0 | 12,867,794,429 | 100% | ||
fortune-master | 0 | 12,212,599,508 | 100% | ||
tamaralovelace | 0 | 88,977,229,486 | 100% | ||
bearbear613 | 0 | 156,677,829,085 | 100% | ||
mes | 0 | 540,999,016,015 | 100% | ||
jerge | 0 | 5,515,141,439 | 100% | ||
arnel | 0 | 537,785,565 | 100% | ||
broncnutz | 0 | 9,293,877,595,589 | 100% | ||
iansart | 0 | 15,728,206,095 | 5% | ||
opinizeunltd | 0 | 12,357,977,712 | 40% | ||
xplosive | 0 | 15,196,161,631 | 28% | ||
eliel | 0 | 11,729,178,766 | 5% | ||
ribalinux | 0 | 87,432,121,663 | 100% | ||
schro.one | 0 | 155,320,733 | 100% | ||
rt395 | 0 | 41,559,544,445 | 50.3% | ||
uruiamme | 0 | 1,662,999,319 | 16.5% | ||
drag33 | 0 | 4,482,416,342 | 100% | ||
ninahaskin | 0 | 131,498,208,496 | 40% | ||
newsflash | 0 | 61,401,202,086,781 | 100% | ||
ecoinstant | 0 | 1,609,912,138,587 | 100% | ||
nuagnorab | 0 | 12,480,523,597 | 100% | ||
cryptoknight12 | 0 | 11,999,328,393 | 100% | ||
stevelivingston | 0 | 356,277,919,979 | 100% | ||
trumpman | 0 | 1,815,652,116,045 | 100% | ||
drwom | 0 | 949,687,819 | 2.94% | ||
aditor | 0 | 5,381,074,060 | 100% | ||
taitux | 0 | 10,825,017,150 | 100% | ||
bitcoinflood | 0 | 408,154,632,501 | 20% | ||
anacristinasilva | 0 | 26,948,784,262 | 100% | ||
steeminator3000 | 0 | 784,649,488 | 100% | ||
alphacore | 0 | 4,254,404,769 | 2.42% | ||
galenkp | 0 | 578,058,971,768 | 14% | ||
enjar | 0 | 1,005,070,521,237 | 100% | ||
ammonite | 0 | 288,533,850,973 | 100% | ||
tracer-paulo | 0 | 16,231,399,899 | 100% | ||
krischy | 0 | 1,439,850,823 | 100% | ||
hellene8 | 0 | 575,838,603 | 26.4% | ||
nicanor-mosquera | 0 | 37,643,736,283 | 100% | ||
spectrumecons | 0 | 4,501,424,879,140 | 80% | ||
truthforce | 0 | 1,185,838,642 | 20% | ||
ew-and-patterns | 0 | 14,365,322,866 | 5% | ||
rival | 0 | 5,747,191,324 | 56% | ||
joeyarnoldvn | 0 | 1,531,234,389 | 4.26% | ||
darsico | 0 | 1,368,659,474,886 | 100% | ||
vikbuddy | 0 | 3,988,390,576 | 20% | ||
offgridlife | 0 | 514,616,115,703 | 100% | ||
jaraumoses | 0 | 14,601,794,927 | 100% | ||
ruth-girl | 0 | 448,424,045,932 | 100% | ||
geekgirl | 0 | 2,149,378,436,143 | 100% | ||
toofasteddie | 0 | 147,425,594,198 | 29% | ||
bluemist | 0 | 23,220,469,788 | 11% | ||
summertooth | 0 | 841,381,891 | 25% | ||
adambarratt | 0 | 130,876,273,967 | 50% | ||
unyimeetuk | 0 | 2,844,553,020 | 50% | ||
allcapsonezero | 0 | 23,273,075,872 | 50% | ||
theguruasia | 0 | 27,767,587,786 | 100% | ||
drorion | 0 | 131,671,592,453 | 19% | ||
shebe | 0 | 509,961,647 | 6% | ||
appreciator | 0 | 41,416,921,291,776 | 11% | ||
themarkymark | 0 | 10,734,964,784,956 | 30% | ||
stayoutoftherz | 0 | 7,103,259,754,613 | 100% | ||
nathanmars | 0 | 45,484,966,700 | 34% | ||
sanjeevm | 0 | 1,002,004,729,292 | 30% | ||
cranium | 0 | 12,445,299,412 | 50% | ||
everrich | 0 | 1,693,243,389 | 100% | ||
davedickeyyall | 0 | 407,483,916,354 | 100% | ||
vikisecrets | 0 | 546,377,928,560 | 30% | ||
isabelpena | 0 | 15,902,310,746 | 100% | ||
geneeverett | 0 | 168,789,759,858 | 100% | ||
steemik | 0 | 842,380,385,688 | 100% | ||
nicolemoker | 0 | 1,212,899,268 | 100% | ||
vimukthi | 0 | 28,286,512,458 | 10% | ||
amitsharma | 0 | 112,750,446,148 | 100% | ||
tesaganewton | 0 | 20,389,554,604 | 50% | ||
duekie | 0 | 0 | 100% | ||
dobroman | 0 | 1,251,884,418 | 100% | ||
emekasegun | 0 | 673,913,686 | 50% | ||
nuthman | 0 | 3,362,081,760,085 | 100% | ||
cwcost | 0 | 6,663,028,812 | 45% | ||
htotoo | 0 | 3,171,715,610 | 100% | ||
felander | 0 | 24,287,446,393 | 5% | ||
santigs | 0 | 52,002,194,331 | 75% | ||
bashadow | 0 | 109,519,716,678 | 25% | ||
stoodkev | 0 | 9,388,885,313,397 | 100% | ||
tipu | 0 | 2,992,601,494,617 | 10% | ||
niallon11 | 0 | 1,086,733,364,367 | 100% | ||
buildawhale | 0 | 20,674,375,107,851 | 30% | ||
artonmysleeve | 0 | 1,132,053,788 | 10.5% | ||
komentator | 0 | 501,163,631 | 100% | ||
yogacoach | 0 | 3,845,350,005 | 5% | ||
tomiscurious | 0 | 276,091,839,506 | 59.7% | ||
taskmaster4450 | 0 | 2,711,636,577,375 | 100% | ||
karlin | 0 | 89,572,418,244 | 100% | ||
fatman | 0 | 7,906,469,322 | 2% | ||
article61 | 0 | 66,506,022,670 | 100% | ||
mawit07 | 0 | 255,230,763,585 | 37.71% | ||
oizaguirres | 0 | 13,234,616,171 | 100% | ||
epodcaster | 0 | 16,729,400,652 | 100% | ||
basilmarples | 0 | 46,089,025,569 | 100% | ||
plantstoplanks | 0 | 58,897,405,193 | 13.75% | ||
yabapmatt | 0 | 10,026,415,295,248 | 100% | ||
risemultiversity | 0 | 1,396,770,696 | 10% | ||
rodent | 0 | 9,759,694,217 | 45% | ||
makerhacks | 0 | 39,236,551,018 | 30% | ||
dagger212 | 0 | 430,181,977,485 | 80% | ||
esteem.app | 0 | 1,214,030,434 | 5.88% | ||
investegg | 0 | 277,676,955,137 | 11.4% | ||
tobetada | 0 | 318,502,883,515 | 10% | ||
ferod23 | 0 | 1,615,875,176 | 100% | ||
vegoutt-travel | 0 | 66,385,844,385 | 80% | ||
xuanphuc98 | 0 | 0 | 100% | ||
long888 | 0 | 10,422,697,932 | 100% | ||
x30 | 0 | 2,006,122,199,482 | 30% | ||
minnowspower | 0 | 4,337,769,198 | 60% | ||
fedesox | 0 | 11,956,540,400,867 | 100% | ||
spacesheep | 0 | 4,770,929,770 | 100% | ||
sahil07 | 0 | 2,648,927,739 | 100% | ||
marleyn | 0 | 6,033,573,780 | 100% | ||
petrolinivideo | 0 | 531,580,373 | 7.5% | ||
arabisouri | 0 | 125,771,141,722 | 100% | ||
noble-noah | 0 | 25,653,522,466 | 100% | ||
traciyork | 0 | 612,049,940,087 | 55% | ||
captainklaus | 0 | 13,933,848,440 | 100% | ||
dejan.vuckovic | 0 | 12,678,511,446 | 50% | ||
informationwar | 0 | 122,292,502,151 | 20% | ||
jakkris | 0 | 9,455,642,937 | 100% | ||
nathanthewise | 0 | 9,270,228,047 | 100% | ||
devosdevosi | 0 | 2,835,704,161 | 100% | ||
mightpossibly | 0 | 74,599,509,264 | 50% | ||
sunsea | 0 | 6,475,480,438 | 5.5% | ||
bigbanginfinity | 0 | 4,579,536,268 | 100% | ||
prinzvalium | 0 | 411,646,755,706 | 100% | ||
omstavan | 0 | 6,540,763,380 | 100% | ||
ridsevilla | 0 | 4,920,340,337 | 100% | ||
afzalqamar | 0 | 6,216,375,017 | 100% | ||
paulmoon410 | 0 | 936,412,589 | 15% | ||
dashroom | 0 | 1,720,389,772 | 80% | ||
kaniz | 0 | 1,215,720,532 | 100% | ||
katerinaramm | 0 | 160,399,078,063 | 100% | ||
not-a-bird | 0 | 5,082,662,462 | 20% | ||
popurri | 0 | 6,045,349,586 | 100% | ||
yogajill | 0 | 9,347,067,940 | 100% | ||
jozefkrichards | 0 | 4,308,173,823 | 50% | ||
traf | 0 | 1,710,951,377,816 | 44% | ||
musicians | 0 | 883,609,893 | 50% | ||
hojaraskita | 0 | 1,439,897,154 | 100% | ||
leninbracho50 | 0 | 10,665,404,181 | 100% | ||
syllem | 0 | 29,873,459,460 | 100% | ||
breelikeatree | 0 | 209,083,192,720 | 100% | ||
spiritabsolute | 0 | 34,257,464,702 | 100% | ||
petronila | 0 | 784,455,567 | 100% | ||
dmwh | 0 | 10,205,835,591 | 10% | ||
wiseagent | 0 | 0 | 0% | ||
cryptonized | 0 | 17,998,885,924 | 12% | ||
fourfourfun | 0 | 14,542,541,398 | 50% | ||
cpufronz | 0 | 21,035,775,612 | 100% | ||
leynedayana | 0 | 702,613,186 | 100% | ||
upmyvote | 0 | 8,801,415,703 | 30% | ||
dancers | 0 | 804,563,951 | 50% | ||
anikekirsten | 0 | 553,022,422 | 5.5% | ||
elbrava | 0 | 3,789,172,432 | 50% | ||
daltono | 0 | 406,670,006,451 | 18% | ||
deepresearch | 0 | 389,148,737,737 | 45% | ||
abeba | 0 | 5,425,666,805 | 100% | ||
jongolson | 0 | 807,867,099,057 | 50% | ||
jude.villarta | 0 | 2,372,575,486 | 50% | ||
awuahbenjamin | 0 | 399,583,783 | 100% | ||
cmmemes | 0 | 2,617,970,963 | 100% | ||
dudeontheweb | 0 | 52,291,224,295 | 100% | ||
not-a-gamer | 0 | 524,759,169 | 40% | ||
yakubenko | 0 | 4,353,268,542 | 100% | ||
travelshots | 0 | 8,541,222,137 | 100% | ||
rodyservi | 0 | 1,051,538,259 | 100% | ||
calumam | 0 | 600,697,694 | 50% | ||
emjoe | 0 | 14,514,697,014 | 100% | ||
pexpresiones | 0 | 39,397,899,295 | 100% | ||
gaming.yer | 0 | 500,747,708 | 100% | ||
santarius | 0 | 540,638,545 | 100% | ||
edicted | 0 | 6,890,874,764,501 | 100% | ||
sacra97 | 0 | 71,837,184,549 | 41% | ||
ahmedsy | 0 | 27,794,378,484 | 100% | ||
empress-eremmy | 0 | 18,178,785,062 | 10% | ||
yolmare | 0 | 90,180,732,741 | 100% | ||
rbm | 0 | 2,762,618,356 | 50% | ||
aagabriel | 0 | 28,504,692,377 | 65% | ||
ikrahch | 0 | 196,952,357,925 | 50% | ||
a-quarius | 0 | 44,129,487,493 | 30% | ||
philnewton | 0 | 635,605,123 | 8.25% | ||
criptoar | 0 | 0 | 100% | ||
ninachejov | 0 | 1,855,227,686 | 100% | ||
alqif | 0 | 876,818,628 | 100% | ||
gustavoadolfodca | 0 | 455,161,575 | 40% | ||
atongis | 0 | 42,236,494,738 | 5% | ||
fabian98 | 0 | 27,548,343,459 | 100% | ||
mistakili | 0 | 109,304,548,233 | 100% | ||
peeyush | 0 | 544,207,662 | 100% | ||
tomhall | 0 | 1,538,662,867,678 | 100% | ||
zelenicic | 0 | 28,615,574,348 | 100% | ||
condeas | 0 | 2,307,686,509,006 | 100% | ||
bhattg | 0 | 254,572,948 | 6.8% | ||
jadams2k18 | 0 | 1,438,713,525 | 100% | ||
movement19 | 0 | 789,154,480 | 7.5% | ||
melvin7 | 0 | 28,151,498,840 | 50% | ||
lisfabian | 0 | 17,666,001,984 | 25% | ||
dwayne16 | 0 | 27,270,724,563 | 35% | ||
shaquillewimpel | 0 | 919,855,977 | 100% | ||
jagoe | 0 | 67,523,960,544 | 24% | ||
siphon | 0 | 0 | 100% | ||
amigoponc | 0 | 2,674,040,274 | 100% | ||
didutza | 0 | 798,332,952 | 50% | ||
thomasthewolf | 0 | 75,083,979,400 | 94% | ||
christopher2002 | 0 | 7,675,560,291 | 100% | ||
reazuliqbal | 0 | 28,279,284,766 | 5% | ||
homesteadlt | 0 | 262,965,504,257 | 100% | ||
jorgebgt | 0 | 0 | 100% | ||
foxyspirit | 0 | 811,895,905 | 13.75% | ||
asimo | 0 | 8,455,455,492 | 60% | ||
outlinez | 0 | 2,267,462,326 | 5.5% | ||
silverd510 | 0 | 5,262,982,951 | 100% | ||
bil.prag | 0 | 351,698,198,005 | 50% | ||
vcclothing | 0 | 166,601,458,292 | 100% | ||
bestboom | 0 | 1,374,958,785 | 5% | ||
dotwin1981 | 0 | 14,443,043,099 | 30% | ||
botefarm | 0 | 23,872,936,816 | 100% | ||
manniman | 0 | 786,301,384,453 | 100% | ||
karolines | 0 | 6,275,474,877 | 100% | ||
adamada | 0 | 354,173,774,543 | 50% | ||
reversehitler88 | 0 | 13,326,556,752 | 100% | ||
jkramer | 0 | 1,349,614,595,686 | 100% | ||
mrchef111 | 0 | 150,333,135,569 | 100% | ||
racibo | 0 | 1,222,598,915 | 10% | ||
obsesija | 0 | 40,970,625,629 | 100% | ||
axeltheartist | 0 | 7,094,833,650 | 100% | ||
blainjones | 0 | 10,865,050,766 | 15% | ||
inciter | 0 | 6,852,605,314 | 11% | ||
paulavg | 0 | 2,363,917,212 | 100% | ||
themightyvolcano | 0 | 918,516,985 | 5% | ||
gogreenbuddy | 0 | 39,523,364,288 | 30% | ||
jersteemit | 0 | 1,128,067,902 | 70% | ||
sv-krasnova | 0 | 152,086,630 | 100% | ||
quochuy | 0 | 369,396,668,222 | 9.13% | ||
getron | 0 | 3,114,744,932 | 100% | ||
acesontop | 0 | 79,680,741,686 | 100% | ||
santarius2 | 0 | 783,168,277 | 100% | ||
kendallron | 0 | 1,120,447,327 | 50% | ||
meanbees | 0 | 1,257,967,759 | 0.5% | ||
mcluz | 0 | 4,707,889,611 | 100% | ||
fitnessgourmet | 0 | 530,357,495 | 50% | ||
jancharlest | 0 | 1,413,833,260 | 100% | ||
fw206 | 0 | 3,579,564,004,170 | 100% | ||
steem.services | 0 | 3,100,509,993 | 1.25% | ||
zaxan | 0 | 6,222,181,965 | 80% | ||
cryptomaniacsgr | 0 | 197,584,275,252 | 100% | ||
valentin86 | 0 | 4,317,027,701 | 100% | ||
pladozero | 0 | 31,685,842,419 | 10% | ||
nateaguila | 0 | 286,794,221,267 | 8% | ||
davidesimoncini | 0 | 4,618,524,365 | 25.8% | ||
rsalmeron | 0 | 0 | 100% | ||
angatt | 0 | 3,593,593,663 | 50% | ||
alfrednoyed | 0 | 30,107,701,811 | 100% | ||
pinas | 0 | 503,982,214 | 50% | ||
oldmans | 0 | 3,780,903,931 | 10% | ||
worldwildflora | 0 | 984,283,230 | 50% | ||
commonlaw | 0 | 4,535,141,960 | 35% | ||
cryptoandcoffee | 0 | 213,092,355,133 | 11% | ||
ronbong | 0 | 1,481,865,115 | 100% | ||
manuelgil64 | 0 | 5,558,730,855 | 100% | ||
kushtia | 0 | 43,210,059,789 | 100% | ||
ua-promoter | 0 | 959,706,537,502 | 20% | ||
numasi | 0 | 1,838,463,451 | 100% | ||
simplegame | 0 | 44,328,137,968 | 100% | ||
elmundodexao | 0 | 2,400,650,571 | 11% | ||
linco | 0 | 1,339,876,171 | 4.5% | ||
marblely | 0 | 10,523,116,478 | 11% | ||
haccolong | 0 | 3,480,728,183 | 5% | ||
cheese4ead | 0 | 37,450,635,985 | 27.5% | ||
apshamilton | 0 | 1,757,765,164,708 | 100% | ||
bitandi | 0 | 0 | 100% | ||
amnlive | 0 | 3,121,134,861 | 10% | ||
longer | 0 | 781,501,261 | 2.5% | ||
alcidescadiz | 0 | 65,439,462,351 | 100% | ||
drsensor | 0 | 1,291,058,977 | 48% | ||
steemulant | 0 | 543,869,173 | 26.13% | ||
chikitin | 0 | 0 | 100% | ||
donald.porter | 0 | 3,106,141,732 | 100% | ||
ambiguity | 0 | 45,561,217,178 | 100% | ||
nutritree | 0 | 2,730,586,988 | 6% | ||
filterfield | 0 | 4,370,015,162 | 100% | ||
richestroomba | 0 | 1,647,873,205 | 100% | ||
scribdbloat | 0 | 71,841,900 | 100% | ||
updatedanthology | 0 | 72,297,880 | 100% | ||
amphora | 0 | 847,399,467 | 100% | ||
expectantfig | 0 | 1,226,727,774 | 100% | ||
bflanagin | 0 | 233,199,587,688 | 100% | ||
gorayii | 0 | 59,714,457,055 | 100% | ||
bestofph | 0 | 6,359,661,248 | 50% | ||
hamismsf | 0 | 634,184,611,214 | 100% | ||
dalz | 0 | 672,812,615,462 | 100% | ||
luciannagy | 0 | 610,893,407 | 4.2% | ||
smartvote | 0 | 69,135,244,049 | 2.8% | ||
jk6276 | 0 | 252,223,760,446 | 80% | ||
hoaithu | 0 | 1,234,100,408 | 4.25% | ||
yaelg | 0 | 62,955,196,931 | 90% | ||
beatking13 | 0 | 0 | 100% | ||
aconsciousness | 0 | 2,290,938,165 | 95% | ||
deepdives | 0 | 154,882,971,345 | 20% | ||
valeytina | 0 | 0 | 100% | ||
dlike | 0 | 17,190,952,833 | 5% | ||
junior182 | 0 | 8,314,780,575 | 100% | ||
anhvu | 0 | 877,036,894 | 4% | ||
abdex9 | 0 | 1,583,908,699 | 100% | ||
engrave | 0 | 3,058,764,590,140 | 100% | ||
sampraise | 0 | 0 | 100% | ||
gubbatv | 0 | 267,347,495,206 | 100% | ||
bobby.madagascar | 0 | 1,498,118,030 | 5% | ||
oakshieldholding | 0 | 1,141,721,870 | 50% | ||
quediceharry | 0 | 564,442,571 | 100% | ||
mister-meeseeks | 0 | 43,894,669,759 | 50% | ||
pocketjs | 0 | 130,562,501 | 26.13% | ||
xmauron3 | 0 | 31,821,402,906 | 100% | ||
ibc | 0 | 81,025,938,200 | 100% | ||
racarjoal | 0 | 2,744,727,138 | 50% | ||
riskneutral | 0 | 2,246,561,499 | 20% | ||
luueetang | 0 | 10,813,359,870 | 100% | ||
jakerich | 0 | 9,697,471,986 | 100% | ||
marvinix | 0 | 4,507,307,385 | 100% | ||
malihasrk | 0 | 585,219,904 | 42.5% | ||
marinmex | 0 | 14,597,373,589 | 100% | ||
linuxbot | 0 | 1,337,657,143 | 100% | ||
jonela | 0 | 1,636,088,143 | 100% | ||
daniiela | 0 | 1,821,499,669 | 100% | ||
kristall97 | 0 | 161,701,800,099 | 100% | ||
misterc | 0 | 32,112,540,390 | 100% | ||
celi130 | 0 | 294,920,404,199 | 100% | ||
banat | 0 | 30,246,190,332 | 100% | ||
michealb | 0 | 816,702,256,123 | 100% | ||
theycallmedan | 0 | 81,699,905,391,657 | 100% | ||
hibbi | 0 | 6,706,104,747 | 100% | ||
multifacetas | 0 | 10,485,859,774 | 100% | ||
cakemonster | 0 | 2,253,910,616 | 2.5% | ||
nelu-rusu | 0 | 2,117,894,919 | 100% | ||
devann | 0 | 19,441,384,411 | 5% | ||
kiel91 | 0 | 191,372,288,577 | 69% | ||
jpbliberty | 0 | 577,362,053,735 | 100% | ||
khan.dayyanz | 0 | 3,485,042,266 | 5% | ||
bluerobo | 0 | 109,553,160,940 | 100% | ||
shainemata | 0 | 24,966,614,293 | 49% | ||
suzana72 | 0 | 18,357,269,481 | 100% | ||
jacuzzi | 0 | 2,936,536,150 | 1.2% | ||
singhcapital | 0 | 3,101,098,280,876 | 100% | ||
kaldewei | 0 | 1,782,892,313 | 30% | ||
primeradue | 0 | 891,841,021 | 55% | ||
mrsbozz | 0 | 13,199,823,158 | 60% | ||
mintymile | 0 | 0 | 100% | ||
elikast | 0 | 5,056,379,821 | 100% | ||
richardfyates | 0 | 62,304,308,932 | 100% | ||
princessdani | 0 | 1,509,705,611 | 100% | ||
steemtelly | 0 | 7,826,986,329 | 26.13% | ||
cooperfelix | 0 | 910,486,928 | 12% | ||
limka | 0 | 0 | 21.18% | ||
hungrybear | 0 | 516,649,495 | 12% | ||
osavi | 0 | 14,236,890,759 | 100% | ||
dknkyz | 0 | 12,796,736,144 | 37% | ||
thelogicaldude | 0 | 148,940,414,526 | 99% | ||
denizcakmak | 0 | 990,324,047 | 100% | ||
src3 | 0 | 2,071,510,625 | 2.5% | ||
daniel-vs | 0 | 3,052,301,510 | 100% | ||
kryptogames | 0 | 32,983,503,128 | 10% | ||
edian | 0 | 16,997,540,427 | 100% | ||
tina-vs | 0 | 3,781,558,000 | 100% | ||
alenox | 0 | 4,620,748,771 | 100% | ||
maxsieg | 0 | 2,545,499,154 | 20% | ||
mfblack | 0 | 663,942,716 | 4.75% | ||
tommyrobinson | 0 | 2,054,844,897 | 100% | ||
rocketpower | 0 | 1,018,074,321 | 40% | ||
photographercr | 0 | 43,016,595,883 | 20% | ||
bigmoneyman | 0 | 907,010,100 | 50% | ||
yiobri | 0 | 30,193,979,142 | 100% | ||
minigame | 0 | 373,075,066,434 | 100% | ||
rollingbones | 0 | 264,810,585 | 50% | ||
akumagai | 0 | 16,855,891,753 | 100% | ||
bojan-bee | 0 | 1,908,818,703 | 100% | ||
gangstalking | 0 | 1,062,055,956 | 0.5% | ||
caro-art | 0 | 54,665,132,055 | 50% | ||
beerlover | 0 | 7,456,531,297 | 5.5% | ||
enjargames | 0 | 5,497,368,802 | 100% | ||
todayslight | 0 | 27,782,667,152 | 100% | ||
aboutheraklion | 0 | 1,122,300,993 | 50% | ||
stvy | 0 | 5,862,192,635 | 100% | ||
clownworld | 0 | 877,911,493 | 10% | ||
vancouverdining | 0 | 1,145,714,579,228 | 22% | ||
leighscotford | 0 | 2,791,103,921 | 4% | ||
iktisat | 0 | 597,751,703 | 100% | ||
erectus | 0 | 530,246,002 | 80% | ||
dorika-bee | 0 | 8,141,283,410 | 100% | ||
sanjatea | 0 | 1,890,613,517 | 100% | ||
vaped | 0 | 5,752,234,173 | 45% | ||
anosys | 0 | 2,666,653,193 | 100% | ||
davidtron | 0 | 7,297,125,947 | 50% | ||
cryptogambit | 0 | 1,439,239,074 | 7.5% | ||
milu-the-dog | 0 | 603,738,678 | 5% | ||
ozraeliavi | 0 | 69,015,816,958 | 100% | ||
triplea.bot | 0 | 1,150,244,579 | 5% | ||
iraeli | 0 | 3,103,426,999 | 100% | ||
firealien | 0 | 14,097,531,709 | 90% | ||
steem.leo | 0 | 6,044,361,693 | 5% | ||
paranormalhub | 0 | 3,659,357,242 | 100% | ||
abh12345.leo | 0 | 2,035,040,091 | 75% | ||
mindtrap-leo | 0 | 1,170,711,476 | 50% | ||
nemesia | 0 | 6,690,653,736 | 100% | ||
empoderat | 0 | 1,452,063,604,349 | 50% | ||
ali-h | 0 | 5,522,193,270 | 60% | ||
bearjohn | 0 | 1,371,950,500 | 75% | ||
mktmaker | 0 | 669,267,013 | 72.75% | ||
myfreshes | 0 | 4,219,732,087 | 5.5% | ||
babytarazkp | 0 | 5,472,669,063 | 50% | ||
trendovoter | 0 | 2,516,421,730 | 60% | ||
medussart | 0 | 2,727,171,918 | 100% | ||
alypanda | 0 | 731,890,600 | 100% | ||
agro-dron | 0 | 9,804,909,556 | 100% | ||
wrestlingdesires | 0 | 45,763,475,931 | 100% | ||
taskmaster4450le | 0 | 976,106,462,639 | 50% | ||
revise.leo | 0 | 29,659,992,781 | 100% | ||
opidia | 0 | 26,727,949,083 | 100% | ||
urun | 0 | 44,214,273,691 | 100% | ||
dappcoder | 0 | 0 | 100% | ||
fixie | 0 | 79,633,140,782 | 100% | ||
trendobounty | 0 | 0 | 60% | ||
mister.reatard | 0 | 8,036,790,525 | 50% | ||
oratione | 0 | 907,421,486 | 100% | ||
zeesh | 0 | 2,383,257,838 | 5.5% | ||
ianballantine | 0 | 1,294,719,024 | 100% | ||
madisonelizabeth | 0 | 609,452,378 | 100% | ||
holybread | 0 | 374,893,014,026 | 100% | ||
bilpcoinrecords | 0 | 651,351,381 | 15% | ||
dappstats | 0 | 3,986,567,796 | 15% | ||
blocktvnews | 0 | 2,761,218,772 | 100% | ||
sandymeyer | 0 | 2,312,895,057,399 | 100% | ||
bilpcoin.pay | 0 | 522,981,782 | 10% | ||
tobago | 0 | 930,555,439 | 50% | ||
viki76 | 0 | 3,809,397,540 | 100% | ||
huaren.news | 0 | 194,771,071,417 | 100% | ||
goodreader | 0 | 130,118,402 | 100% | ||
pjansen.leo | 0 | 387,191,349 | 100% | ||
yourtop3 | 0 | 2,583,764,723 | 27.5% | ||
hamsterpoweriii | 0 | 7,028,210,461 | 100% | ||
ribary | 0 | 1,738,101,468 | 2.5% | ||
inigo-montoya-jr | 0 | 1,626,594,513 | 17% | ||
sharkthelion | 0 | 7,028,249,706 | 25% | ||
gloriaolar | 0 | 941,926,348 | 7.5% | ||
joemark | 0 | 1,373,237,085 | 70% | ||
atma.love | 0 | 20,160,200,199 | 4% | ||
marblesz | 0 | 734,619,411 | 11% | ||
moonappics | 0 | 1,760,483,144 | 100% | ||
sportal | 0 | 11,708,262,994 | 100% | ||
grad.best | 0 | 11,298,178,153 | 100% | ||
mice-k | 0 | 442,290,628 | 5% | ||
julesquirin | 0 | 1,362,375,420 | 8.8% | ||
staryao | 0 | 25,327,146 | 100% | ||
davidlionfish | 0 | 0 | 33% | ||
adcreatordesign | 0 | 0 | 100% | ||
catanknight | 0 | 825,200,494 | 100% | ||
dpend.active | 0 | 3,775,654,817 | 10% | ||
blue-witness | 0 | 1,085,885,995 | 100% | ||
x9ed1732b | 0 | 2,328,904,162 | 100% | ||
tht | 0 | 1,681,519,074 | 100% | ||
hivetrending | 0 | 70,521,894,331 | 100% | ||
thisismylife | 0 | 28,110,368,631 | 65% | ||
flowerbaby | 0 | 5,557,526,759 | 18% | ||
janaliana | 0 | 8,251,758,491 | 100% | ||
softworld | 0 | 444,815,849,148 | 99% | ||
captainhive | 0 | 1,654,152,621,394 | 80% | ||
rdv4nfi | 0 | 0 | 64% | ||
nildasalazar | 0 | 2,504,727,960 | 100% | ||
globalcurrencies | 0 | 2,463,800,394 | 35% | ||
dcityrewards | 0 | 156,082,973,929 | 5% | ||
holoferncro | 0 | 8,712,579,534 | 5% | ||
sketching | 0 | 5,133,578,525 | 50% | ||
nightlydungeon | 0 | 1,986,748,726 | 100% | ||
ogre-radio | 0 | 551,869,504,335 | 100% | ||
ninnu | 0 | 103,361,080,596 | 50% | ||
kiemis | 0 | 436,021,369,063 | 50% | ||
kiemurainen | 0 | 37,951,744,414 | 100% | ||
ecency | 0 | 1,597,116,709,478 | 5.88% | ||
hiveupme | 0 | 1,103,687,440,329 | 60% | ||
hivecurator | 0 | 5,574,901,390 | 60% | ||
ghaazi | 0 | 4,825,526,161 | 100% | ||
benantca | 0 | 4,352,867,259 | 100% | ||
actioncats | 0 | 12,658,376,496 | 9.9% | ||
emrysjobber | 0 | 873,881,691 | 100% | ||
glasscity | 0 | 377,301,195 | 14.85% | ||
sweetest | 0 | 479,088,841 | 100% | ||
moneyheist-sl | 0 | 632,700,351 | 100% | ||
minihw | 0 | 209,710,399 | 100% | ||
name0 | 0 | 1,834,115,783 | 100% | ||
damadama | 0 | 120,363,761 | 100% | ||
quinnertronics | 0 | 72,501,771,654 | 34% | ||
plusvault | 0 | 691,553,079 | 34% | ||
th4488 | 0 | 0 | 100% | ||
olaunlimited | 0 | 37,307,665,362 | 19.8% | ||
coretoken | 0 | 253,536,314 | 60% | ||
zhoten | 0 | 43,462,443,942 | 100% | ||
ecency.stats | 0 | 1,509,409,031 | 5.88% | ||
millyzev | 0 | 41,742,535,914 | 100% | ||
obandoduarte | 0 | 19,818,356,816 | 100% | ||
oks2crypto | 0 | 18,895,868,261 | 100% | ||
reward.app | 0 | 141,184,889,348 | 33% | ||
sevalo13 | 0 | 6,397,983,023 | 100% | ||
recoveryinc | 0 | 9,794,440,990 | 15% | ||
vaulttoken | 0 | 1,123,546,007 | 60% | ||
swap.vault | 0 | 165,987,329 | 60% | ||
hive-108278 | 0 | 881,767,897 | 50% | ||
deadswitch | 0 | 3,861,743,537 | 100% | ||
josemoises | 0 | 13,061,722,486 | 100% | ||
hive-data | 0 | 436,865,479,185 | 100% | ||
jelly-cz | 0 | 1,679,168,009 | 100% | ||
kran11 | 0 | 559,901,955 | 100% | ||
kran13 | 0 | 559,106,495 | 100% | ||
kran15 | 0 | 559,829,065 | 100% | ||
kran16 | 0 | 559,046,071 | 100% | ||
kran17 | 0 | 560,380,647 | 100% | ||
gohive | 0 | 102,307,306,399 | 100% | ||
sevenoh-fiveoh | 0 | 1,061,432,893 | 5% | ||
lenincarrizo | 0 | 14,452,359,972 | 100% | ||
visualartist | 0 | 3,096,034,426 | 100% | ||
yosmandiaz | 0 | 573,287,225 | 100% | ||
dying | 0 | 511,870,032 | 15% | ||
ilsanunez | 0 | 7,132,348,945 | 100% | ||
kran21 | 0 | 556,985,986 | 100% | ||
kran22 | 0 | 557,012,592 | 100% | ||
kran23 | 0 | 556,981,105 | 100% | ||
kran24 | 0 | 554,816,820 | 100% | ||
usainvote | 0 | 15,003,867,774,286 | 100% | ||
rewarder | 0 | 1,104,545,446 | 60% | ||
dama52 | 0 | 0 | 100% | ||
trangbaby | 0 | 11,323,825,286 | 9.13% | ||
hermaryrc | 0 | 732,206,869 | 100% | ||
eddie-earner | 0 | 682,166,164 | 50% | ||
brettpullen | 0 | 4,048,151,478,448 | 100% | ||
alimaneiro | 0 | 11,243,297,594 | 100% | ||
omarrojas | 0 | 72,451,910,045 | 75% | ||
aemile-kh | 0 | 10,534,586,405 | 100% | ||
elricmoonslayer | 0 | 2,026,786,748 | 50% | ||
tan.dev | 0 | 175,682,264 | 60% | ||
yourmarklubbers | 0 | 15,475,542,409 | 100% | ||
ebon123 | 0 | 644,207,452 | 100% | ||
hive-144994 | 0 | 604,851,774 | 100% | ||
mattbee | 0 | 589,636,442 | 100% | ||
rohansuares | 0 | 10,657,534,841 | 100% | ||
dknkyz.leo | 0 | 818,439,013 | 50% | ||
jesusin | 0 | 4,771,415,335 | 100% | ||
mismo | 0 | 36,612,639,638 | 100% | ||
wine-token | 0 | 3,343,125,897 | 60% | ||
mvl2304 | 0 | 84,946,382,060 | 100% | ||
rarereden | 0 | 2,937,548,571 | 100% | ||
kattycrochet | 0 | 4,030,033,779 | 5.5% | ||
officialhisha | 0 | 12,918,256,211 | 100% | ||
dalz.shorts | 0 | 1,241,771,218 | 65% | ||
jfang003 | 0 | 29,540,589,299 | 20% | ||
brofund-weed | 0 | 1,871,106,596 | 50% | ||
jasonherzmartin | 0 | 14,643,035,390 | 100% | ||
tan.reg | 0 | 172,915,827 | 60% | ||
thesimguru | 0 | 173,298,061 | 60% | ||
leoline | 0 | 9,035,544,455 | 50% | ||
n0m0refak3n3ws | 0 | 3,758,303,610 | 10% | ||
tan.stake | 0 | 4,718,077,067 | 60% | ||
lbi-token | 0 | 160,996,395,473 | 50% | ||
jmsansan.leo | 0 | 31,678,072,887 | 25% | ||
hariton | 0 | 6,704,761,817 | 100% | ||
wine.bot | 0 | 7,772,952,985 | 60% | ||
godfather.ftw | 0 | 2,790,035,232 | 5% | ||
ibkdagreat | 0 | 5,675,121,733 | 100% | ||
dcrops | 0 | 16,158,230,903 | 2.5% | ||
mccoy02 | 0 | 34,160,610,998 | 100% | ||
ammonite.leo | 0 | 1,446,922,469 | 100% | ||
susie-saver | 0 | 3,685,578,527 | 100% | ||
dadspardan | 0 | 20,630,749,849 | 100% | ||
tan.extra | 0 | 166,245,630 | 60% | ||
vihan | 0 | 175,963,242 | 60% | ||
cielitorojo | 0 | 10,008,282,571 | 7.7% | ||
hykss.leo | 0 | 44,332,840,688 | 7.5% | ||
nineclaws | 0 | 49,841,731,595 | 100% | ||
babeltrips | 0 | 1,673,489,601 | 4.56% | ||
winebank | 0 | 166,441,821 | 60% | ||
eldritchspig | 0 | 651,155,646 | 10% | ||
samrisso | 0 | 10,542,104,020 | 15% | ||
trostparadox | 0 | 3,847,517,415,651 | 100% | ||
simbank | 0 | 175,069,170 | 60% | ||
sofs-su | 0 | 78,688,971,862 | 67% | ||
pusen | 0 | 821,576,078,592 | 100% | ||
kriszrokk | 0 | 5,099,596,872 | 100% | ||
hectorsanchez18 | 0 | 25,253,710,493 | 100% | ||
vid.observer | 0 | 11,252,485,944 | 100% | ||
repayme4568 | 0 | 1,655,946,290 | 100% | ||
cbridges573 | 0 | 2,805,761,066 | 15% | ||
tych021 | 0 | 15,112,438,304 | 100% | ||
citywriter | 0 | 2,985,063,491 | 60% | ||
bananass | 0 | 6,615,522,180 | 30% | ||
deivyb | 0 | 16,342,779,597 | 100% | ||
mamasita | 0 | 1,648,888,739 | 100% | ||
elgatoshawua | 0 | 2,427,859,593 | 5.5% | ||
abisag | 0 | 0 | 100% | ||
xyba | 0 | 50,284,211,995 | 100% | ||
arunbiju969 | 0 | 1,108,978,637 | 14% | ||
farleyfund | 0 | 7,447,533,021 | 100% | ||
lioz3018 | 0 | 573,193,341 | 50% | ||
cowboyphylosophy | 0 | 32,143,801,404 | 100% | ||
wine-ico | 0 | 184,050,471 | 60% | ||
bigtooth | 0 | 901,421,972 | 100% | ||
nyxlabs | 0 | 583,921,171 | 2.5% | ||
dodovietnam | 0 | 4,074,337,187 | 4.56% | ||
ajanaku | 0 | 2,598,396,607 | 100% | ||
creodas | 0 | 1,453,258,636 | 37.5% | ||
core.voter | 0 | 12,190,320,174 | 60% | ||
miyimiti | 0 | 0 | 100% | ||
dirtnowitzki | 0 | 486,579,339 | 100% | ||
cryptoniusrex | 0 | 0 | 100% | ||
city-bounter | 0 | 0 | 100% | ||
rendrianarma | 0 | 2,102,811,560 | 50% | ||
hexagono6 | 0 | 639,698,632 | 5.5% | ||
stellify | 0 | 4,258,480,871 | 100% | ||
astrocreator | 0 | 143,169,319,654 | 100% | ||
las3rbone | 0 | 15,095,315,137 | 100% | ||
doctore420 | 0 | 0 | 100% | ||
emybaby | 0 | 3,024,620,353 | 11% | ||
raythulhu | 0 | 3,266,137,929 | 100% | ||
leveluplifestyle | 0 | 23,067,798,526 | 50% | ||
auliaarma | 0 | 503,201,353 | 50% | ||
meesterleo | 0 | 1,230,792,321 | 75% | ||
vempromundo.pob | 0 | 3,943,964,462 | 100% | ||
alexandra1301 | 0 | 7,078,218,185 | 100% | ||
ericaliu | 0 | 3,022,461,990 | 8.1% | ||
awakening-along | 0 | 7,735,732,706 | 100% | ||
karolrodriguez | 0 | 7,037,678,403 | 100% | ||
hive.friends | 0 | 0 | 1% | ||
luisestaba23 | 0 | 1,723,595,023 | 100% | ||
holovision.cash | 0 | 121,760,660 | 100% | ||
hjrrodriguez | 0 | 15,785,630,177 | 100% | ||
onealfa.pob | 0 | 6,322,269,378 | 100% | ||
memeisfun | 0 | 552,853,827 | 70% | ||
brume7 | 0 | 6,632,190,951 | 100% | ||
vanillavow | 0 | 526,963,540 | 100% | ||
egistar | 0 | 11,669,369,727 | 56% | ||
shanhenry | 0 | 2,168,797,966 | 100% | ||
fotomaglys | 0 | 2,322,873,767 | 5.5% | ||
mattbrown.art | 0 | 738,202,757 | 10% | ||
panmonagas | 0 | 705,663,690 | 5.5% | ||
duwiky | 0 | 11,082,550,166 | 45% | ||
robmojo.leo | 0 | 873,805,676 | 25% | ||
joseph23 | 0 | 7,752,290,895 | 85% | ||
hivehydra | 0 | 4,599,104,317 | 100% | ||
projectmama | 0 | 4,580,614,983 | 100% | ||
readthisplease | 0 | 11,707,826,302 | 15% | ||
dibblers.dabs | 0 | 15,747,616,031 | 14.45% | ||
cowboyzlegend27 | 0 | 20,735,123,003 | 100% | ||
karmaa13 | 0 | 763,119,693 | 100% | ||
vault.burn | 0 | 3,474,950,805 | 60% | ||
jimmy406 | 0 | 9,554,275,389 | 100% | ||
irenicus30 | 0 | 81,740,796,153 | 100% | ||
flamistan | 0 | 1,227,447,193 | 50% | ||
aprasad2325 | 0 | 2,037,029,501 | 5.5% | ||
da-prince | 0 | 1,416,461,012 | 100% | ||
mao317 | 0 | 0 | 100% | ||
gimme-your-coinz | 0 | 4,388,143,930 | 30% | ||
take-my-coinz | 0 | 662,235,008 | 50% | ||
yulilemus02 | 0 | 1,493,409,445 | 100% | ||
boboman | 0 | 6,534,472,686 | 100% | ||
theguru.photos | 0 | 1,408,904,529 | 60% | ||
borsengelaber | 0 | 36,291,687,293 | 100% | ||
slckrck40 | 0 | 111,074,607 | 100% | ||
thebalanceguy | 0 | 36,928,882 | 20.8% | ||
daddydog | 0 | 718,063,689 | 100% | ||
delver | 0 | 7,943,652,854 | 20% | ||
cryptoniusraptor | 0 | 0 | 100% | ||
adamcurry33 | 0 | 148,026,055 | 100% | ||
abifarras | 0 | 1,158,333,019 | 100% | ||
jocieprosza.leo | 0 | 2,210,516,359 | 50% | ||
mishoni | 0 | 2,116,004,532 | 100% | ||
enovf | 0 | 5,986,375,441 | 100% | ||
apeminingclub | 0 | 115,719,257,429 | 30% | ||
vasko90 | 0 | 2,497,763,758 | 100% | ||
lyon-89 | 0 | 5,196,471,637 | 100% | ||
emanate-artworx | 0 | 0 | 100% | ||
trezzahn | 0 | 0 | 100% | ||
marbrym | 0 | 12,345,928,954 | 100% | ||
cryptoccshow | 0 | 2,776,287,193 | 25% | ||
flsfserkan | 0 | 15,844,160,571 | 100% | ||
funshee | 0 | 911,984,720 | 25% | ||
aleksdi | 0 | 0 | 100% | ||
olympicdragon | 0 | 2,788,224,464 | 52% | ||
ozohu | 0 | 551,445,376 | 7.5% | ||
chincoculbert | 0 | 3,401,125,677 | 42% | ||
musingmusician | 0 | 804,698,363 | 100% | ||
eeventuree | 0 | 214,691,229 | 100% | ||
politeumico | 0 | 24,842,652,351 | 100% | ||
cherepin | 0 | 0 | 100% | ||
jorgecitoxxxx | 0 | 0 | 99.6% | ||
thu172 | 0 | 982,468,369 | 9.13% | ||
kran27 | 0 | 606,386,012 | 100% | ||
iyiade | 0 | 537,556,424 | 50% | ||
onwugbenuvictor | 0 | 5,530,403,830 | 15% | ||
amaillo | 0 | 1,326,253,816 | 10% | ||
preets | 0 | 13,047,739,653 | 100% | ||
kran74 | 0 | 569,918,227 | 100% | ||
kran101 | 0 | 530,455,644 | 100% | ||
kran102 | 0 | 530,455,198 | 100% | ||
kran121 | 0 | 530,422,511 | 100% | ||
kran124 | 0 | 530,422,841 | 100% | ||
kran126 | 0 | 530,422,447 | 100% | ||
kran134 | 0 | 530,448,288 | 100% | ||
kran135 | 0 | 530,421,885 | 100% | ||
kran141 | 0 | 530,436,650 | 100% | ||
kran143 | 0 | 530,436,359 | 100% | ||
kran148 | 0 | 530,384,653 | 100% | ||
kran151 | 0 | 501,061,289 | 100% | ||
kran152 | 0 | 501,062,367 | 100% | ||
kran154 | 0 | 501,061,938 | 100% | ||
kran156 | 0 | 501,080,882 | 100% | ||
kran157 | 0 | 501,053,395 | 100% | ||
kran158 | 0 | 501,087,191 | 100% | ||
kran159 | 0 | 501,055,632 | 100% | ||
kran161 | 0 | 503,530,306 | 100% | ||
kran162 | 0 | 501,516,349 | 100% | ||
kran163 | 0 | 501,086,410 | 100% | ||
kran164 | 0 | 501,059,700 | 100% | ||
kran165 | 0 | 503,536,252 | 100% | ||
kran166 | 0 | 501,060,040 | 100% | ||
kran169 | 0 | 503,559,969 | 100% | ||
kran170 | 0 | 501,061,437 | 100% | ||
kran177 | 0 | 608,569,707 | 100% | ||
kran180 | 0 | 608,575,056 | 100% | ||
kran182 | 0 | 608,651,286 | 100% | ||
kran184 | 0 | 606,310,783 | 100% | ||
kran187 | 0 | 608,626,225 | 100% | ||
kran194 | 0 | 608,627,861 | 100% | ||
kran196 | 0 | 608,620,547 | 100% | ||
kran199 | 0 | 608,652,636 | 100% | ||
kran202 | 0 | 608,497,136 | 100% | ||
kran204 | 0 | 606,494,348 | 100% | ||
kran205 | 0 | 608,515,801 | 100% | ||
kran208 | 0 | 608,471,556 | 100% | ||
kran212 | 0 | 608,471,420 | 100% | ||
kran215 | 0 | 608,445,958 | 100% | ||
kran218 | 0 | 606,148,391 | 100% | ||
kran220 | 0 | 608,497,730 | 100% | ||
kran229 | 0 | 608,497,675 | 100% | ||
kran231 | 0 | 608,547,228 | 100% | ||
kran233 | 0 | 608,567,866 | 100% | ||
kran241 | 0 | 608,548,423 | 100% | ||
kran246 | 0 | 608,549,349 | 100% | ||
kran248 | 0 | 608,522,545 | 100% | ||
kran252 | 0 | 608,522,741 | 100% | ||
kran255 | 0 | 608,515,513 | 100% | ||
kran257 | 0 | 608,472,650 | 100% | ||
kran264 | 0 | 608,445,827 | 100% | ||
kran267 | 0 | 608,490,429 | 100% | ||
kran268 | 0 | 608,522,565 | 100% | ||
kran270 | 0 | 608,497,471 | 100% | ||
kran272 | 0 | 606,873,477 | 100% | ||
kran274 | 0 | 608,471,691 | 100% | ||
kran278 | 0 | 608,471,655 | 100% | ||
kran282 | 0 | 608,523,414 | 100% | ||
kran283 | 0 | 608,463,947 | 100% | ||
kran300 | 0 | 608,566,890 | 100% | ||
kran302 | 0 | 608,600,780 | 100% | ||
oogabooga0411 | 0 | 0 | 100% | ||
thaddeusprime | 0 | 3,968,268,105 | 100% | ||
dlmmqb | 0 | 2,657,364,550 | 20% | ||
lazy001 | 0 | 4,280,774,727 | 100% | ||
simplemind-76 | 0 | 0 | 100% | ||
rzc24-nftbbg | 0 | 2,747,576,493 | 50% | ||
lordemmy | 0 | 678,271,681 | 80% | ||
elhartz | 0 | 1,348,194,328 | 100% | ||
kenchan | 0 | 729,875,933 | 100% | ||
cathgothard | 0 | 16,074,379,439 | 50% | ||
wendy0520 | 0 | 715,527,939 | 9.9% | ||
nilarwin | 0 | 9,139,169,608 | 100% | ||
kimloan | 0 | 773,497,559 | 4.56% | ||
ray5fan | 0 | 0 | 100% | ||
cryptokungfu | 0 | 9,713,083,103 | 100% | ||
chantrellflu | 0 | 474,414,484 | 100% | ||
blockheadgames | 0 | 4,882,001,933 | 30% | ||
dstampede | 0 | 992,431,133 | 100% | ||
rca13 | 0 | 1,392,646,201 | 100% | ||
darkwarrior33 | 0 | -3,199,482,293 | -100% | ||
dsky | 0 | 51,352,195,741 | 100% | ||
dora381 | 0 | 1,914,614,433 | 9.13% | ||
paulriq | 0 | 0 | 100% | ||
garseeb | 0 | 418,898,567 | 100% | ||
whynotcamp | 0 | 1,522,786,594 | 9.13% | ||
techguard | 0 | 1,541,840,616 | 22.5% | ||
davdiprossimo | 0 | 61,990,342,217 | 100% | ||
vedranijus | 0 | 0 | 0.4% | ||
riansilva | 0 | 1,470,247,542 | 50% | ||
luizeba | 0 | 9,307,775,275 | 11% | ||
crazy-bee | 0 | 1,203,086,962 | 9.13% | ||
natabell | 0 | 0 | 100% | ||
deraaa | 0 | 1,406,864,221 | 10% | ||
tyrnis.curation | 0 | 1,590,948,797 | 50% | ||
pob.curator | 0 | 663,556,194,442 | 90% | ||
sisterhood2 | 0 | 64,460,867,988 | 100% | ||
kavii | 0 | 2,907,215,978 | 60% | ||
merilin077 | 0 | 164,100,089 | 94.5% | ||
hive-188181 | 0 | 145,504,337 | 100% | ||
tydynrain | 0 | 0 | 100% | ||
coin.curator | 0 | 5,757,689,407 | 45% | ||
popsfishing | 0 | 447,772,819 | 100% | ||
cryptothesis | 0 | 0 | 100% | ||
weone | 0 | 0 | 100% | ||
nploader | 0 | 1,604,870,982 | 100% | ||
soonlambo | 0 | 11,520,098,726 | 90% | ||
qwerdy | 0 | 5,007,139,988 | 100% | ||
bettymorgan | 0 | 419,508,663 | 100% | ||
tokenizedsociety | 0 | 1,873,328,777 | 30% | ||
ozmandias | 0 | 1,390,493,034 | 100% | ||
milly100 | 0 | 0 | 100% | ||
rickmniebla | 0 | 274,023,215 | 100% | ||
waivio.curator | 0 | 1,582,836,983 | 2.97% | ||
lofone | 0 | 37,377,103,537 | 100% | ||
estherscott | 0 | 657,627,091 | 3.75% | ||
chaosmagic23 | 0 | 3,685,750,338 | 100% | ||
violator101 | 0 | 1,542,590,832 | 100% | ||
punksonhive | 0 | 6,628,974,250 | 30% | ||
firstborn.pob | 0 | 1,153,441,004 | 50% | ||
dkidfit | 0 | 302,260,503 | 100% | ||
pob.macro | 0 | 11,330,753,162 | 90% | ||
ernestoacostame | 0 | 1,963,719,287 | 100% | ||
sunnyvo | 0 | 1,421,603,926 | 4.56% | ||
aichanbot | 0 | 20,171,128,725 | 33% | ||
thebtcadvantage | 0 | 319,863,697 | 100% | ||
willens99 | 0 | 131,887,870 | 100% | ||
leoalpha | 0 | 4,322,280,605 | 100% | ||
hyhy93 | 0 | 567,025,906 | 9.13% | ||
trostparadox.vyb | 0 | 1,265,444,308 | 50% | ||
vyb.pob | 0 | 2,374,314,627 | 50% | ||
cryptobeautiful | 0 | 924,009,770 | 100% | ||
omosefe | 0 | 937,047,342 | 7.5% | ||
elon.curator | 0 | 23,593,310,901 | 90% | ||
manuphotos | 0 | 969,844,779 | 20% | ||
beautifulwreck | 0 | 760,172,123 | 7% | ||
donna8 | 0 | 0 | 100% | ||
jomancub | 0 | 9,153,398,417 | 100% | ||
miguelgonzalezms | 0 | 724,295,206 | 50% | ||
saboin.pob | 0 | 610,623,590 | 100% | ||
paeng6969 | 0 | 510,726,663 | 100% | ||
vyb.curation | 0 | 1,363,356,376 | 50% | ||
femcy-willcy | 0 | 685,230,547 | 10% | ||
manuelernestogr | 0 | 2,606,422,577 | 50% | ||
ykretz.leo | 0 | 1,226,579,286 | 100% | ||
rocinanteprimo | 0 | 1,012,348,202 | 100% | ||
onealfa.vyb | 0 | 642,990,935 | 70% | ||
albuslucimus | 0 | 4,497,783,248 | 10% | ||
ivypham | 0 | 1,489,337,032 | 9.13% | ||
drceeyou | 0 | 4,619,568,112 | 48% | ||
juanperaza46 | 0 | 0 | 100% | ||
marlonfund | 0 | 713,784,953 | 100% | ||
danghao | 0 | 793,600,934 | 9.13% | ||
ujka-vs | 0 | 10,921,306,424 | 100% | ||
crptogeek | 0 | 3,708,380,960 | 100% | ||
scholaris.vyb | 0 | 3,168,236,249 | 100% | ||
hironakamura | 0 | 562,102,611 | 15% | ||
bosveld1 | 0 | 263,003,231 | 100% | ||
hislab | 0 | 1,380,548,437 | 100% | ||
bricksolution | 0 | 3,725,151,656 | 16% | ||
tuyenmei95 | 0 | 3,551,861,780 | 9.13% | ||
kstreet | 0 | 187,151,791,712 | 100% | ||
gu-lord-dark | 0 | 8,764,980,323 | 100% | ||
vyrusv | 0 | 195,092,751 | 100% | ||
petra67 | 0 | 15,179,441,904 | 100% | ||
mrki-car | 0 | 552,944,442 | 100% | ||
djblendah | 0 | 656,860,087 | 100% | ||
karelnt | 0 | 939,331,652 | 25% | ||
investinfreedom | 0 | 7,382,130,001 | 20% | ||
rainbrella | 0 | 3,357,315,229 | 100% | ||
valeriavalentina | 0 | 0 | 100% | ||
vyb.curator | 0 | 13,390,377,355 | 45% | ||
nkechi | 0 | 1,541,841,915 | 50% | ||
goldmark45 | 0 | 2,049,908,848 | 100% | ||
janetedita | 0 | 7,907,039,897 | 100% | ||
abelfotografia | 0 | 8,434,380,481 | 50% | ||
filip-psiho | 0 | 6,839,588,331 | 100% | ||
milan-petrovic | 0 | 1,808,387,530 | 100% | ||
pobscholarship | 0 | 522,523,650 | 50% | ||
ditoferrer | 0 | 1,298,329,259 | 50% | ||
friendmoose.pob | 0 | 628,014,808 | 50% | ||
cryptocubangirl | 0 | 1,750,991,188 | 50% | ||
dreloop07 | 0 | 0 | 100% | ||
atyourservice | 0 | 501,413,927 | 6% | ||
ariel930330 | 0 | 743,017,335 | 20% | ||
hivecuba | 0 | 52,492,320,702 | 100% | ||
balabambuz | 0 | 0 | 100% | ||
meestervyb | 0 | 1,051,334,165 | 70% | ||
eyesthewriter | 0 | 346,796,490 | 100% | ||
cryptodive | 0 | 50,613,403,657 | 100% | ||
vyb.fund | 0 | 1,107,844,845 | 50% | ||
neidvu | 0 | 0 | 100% | ||
parravu | 0 | 0 | 100% | ||
mariovu2 | 0 | 0 | 100% | ||
jfuji | 0 | 12,648,258,964 | 100% | ||
luisvu | 0 | 0 | 100% | ||
molevu | 0 | 0 | 100% | ||
qoalavu | 0 | 0 | 100% | ||
thuongvu | 0 | 0 | 100% |
That's great. Will vote for your proposal when I get back on my laptop. Posted using [LeoFinance Mobile](https://leofinance.io)
author | acesontop |
---|---|
permlink | thats-great-will-vote-for-yo-daxmahsyx8qbbqouu2xnofjyugsjdgys |
category | hive-110369 |
json_metadata | {"app":"LeoFinance/android/0.9.0","format":"markdown"} |
created | 2022-05-19 14:11:06 |
last_update | 2022-05-19 14:11:06 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 14:11:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 1,977,334,877,704,649 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 5,000 |
post_id | 113,340,266 |
net_rshares | 0 |
This some awesome stuff!
author | acidyo |
---|---|
permlink | rc4l60 |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 10:30:03 |
last_update | 2022-05-19 10:30:03 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 10:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 3,354,691,605,318,047 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,335,852 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
phithongvu | 0 | 0 | 100% |
What about doing it in the opposite direction, say Hive to BTC?
author | alphahippie |
---|---|
permlink | re-brianoflondon-rq3mz6 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2023.2.2"} |
created | 2023-02-15 01:55:18 |
last_update | 2023-02-15 01:55:18 |
depth | 1 |
children | 1 |
last_payout | 2023-02-22 01:55:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 1,641,765,582,734 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,789,605 |
net_rshares | 0 |
Done. V4v.app you send Hive to pay to Lightning.
author | brianoflondon |
---|---|
permlink | re-alphahippie-rq3rtn |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2023.2.2"} |
created | 2023-02-15 03:46:36 |
last_update | 2023-02-15 03:46:36 |
depth | 2 |
children | 0 |
last_payout | 2023-02-22 03:46:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 120,791,403 |
net_rshares | 0 |
Great work Brian. A very elegant solution. Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@ammonite.leo/re-brianoflondon-6u8a2s)
author | ammonite.leo |
---|---|
permlink | re-brianoflondon-6u8a2s |
category | hive-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"} |
created | 2022-05-19 22:23:06 |
last_update | 2022-05-19 22:23:06 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 22:23:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 1,483,326,761,794 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,351,216 |
net_rshares | 0 |
This is so cool! Thank you for helping to grow our ecosystem
author | bearbear613 |
---|---|
permlink | rc4tuw |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 13:37:42 |
last_update | 2022-05-19 13:37:42 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 13:37:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 292,487,584,391,852 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,339,530 |
net_rshares | 81,462,570,193 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chronocrypto | 0 | 81,462,570,193 | 100% |
<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>
author | beerlover |
---|---|
permlink | re-brianoflondon-lightning-addresses-for-everyone-on-hive-20220520t062320734z |
category | hive-110369 |
json_metadata | {"app":"beerlover/2.0"} |
created | 2022-05-20 06:23:21 |
last_update | 2022-05-20 06:23:21 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 06:23:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 529 |
author_reputation | 25,811,409,448,698 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,358,695 |
net_rshares | 0 |
This is next level stuffโฆ appreciate these tools man ๐ซก
author | bigtakosensei |
---|---|
permlink | re-brianoflondon-2022520t133833920z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-20 18:38:33 |
last_update | 2022-05-20 18:38:33 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 18:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 72,495,751,295,043 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,374,914 |
net_rshares | 0 |
Wow, thatโs great! Will have to test it if it really works. ๐๐ป Excellent work.
author | borsengelaber |
---|---|
permlink | re-brianoflondon-2022519t123927299z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-19 10:39:27 |
last_update | 2022-05-19 10:39:27 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 10:39:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 330,951,081,318,616 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,336,006 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tracvu | 0 | 0 | 100% | ||
perezvuu | 0 | 0 | 100% | ||
tomenvu | 0 | 0 | 100% |
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?
author | candy49 |
---|---|
permlink | rc5ooq |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-20 00:43:51 |
last_update | 2022-05-20 00:43:51 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 00:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.066 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 221 |
author_reputation | 8,251,167,519,057 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,353,660 |
net_rshares | 214,709,221,574 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teatree | 0 | 533,431,360 | 100% | ||
candy49 | 0 | 2,634,155,496 | 100% | ||
alyssasanders | 0 | 948,149,687 | 100% | ||
rose98734 | 0 | 6,914,448,722 | 100% | ||
pishio | 0 | 203,679,036,309 | 3.5% |
nice 
author | condeas |
---|---|
permlink | re-brianoflondon-rc4o7c |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 11:35:39 |
last_update | 2022-05-19 11:35:39 |
depth | 1 |
children | 2 |
last_payout | 2022-05-26 11:35:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 56,845,427,692,555 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,037 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tongvu | 0 | 0 | 100% | ||
cedevu | 0 | 0 | 100% | ||
posorio | 0 | 0 | 100% | ||
davidstephenvu | 0 | 0 | 100% | ||
sosanalia | 0 | 0 | 100% |
<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>
author | beerlover |
---|---|
permlink | re-condeas-re-brianoflondon-rc4o7c-20220519t211438788z |
category | hive-110369 |
json_metadata | {"app":"beerlover/2.0"} |
created | 2022-05-19 21:14:39 |
last_update | 2022-05-19 21:14:39 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 21:14:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 520 |
author_reputation | 25,811,409,448,698 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,349,680 |
net_rshares | 0 |
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
author | isnochys |
---|---|
permlink | re-re-brianoflondon-rc4o7c-20220519t211317z |
category | hive-110369 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-05-19 21:13:21 |
last_update | 2022-05-19 21:13:21 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 21:13:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 195 |
author_reputation | 47,886,018,797,724 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,349,651 |
net_rshares | 0 |
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>  </center>
author | cpol |
---|---|
permlink | re-brianoflondon-rc5lrq |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 23:42:48 |
last_update | 2022-05-19 23:42:48 |
depth | 1 |
children | 1 |
last_payout | 2022-05-26 23:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 375 |
author_reputation | 60,973,047,313,536 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,352,759 |
net_rshares | 0 |
<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)  Discord [](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> ***
author | pgm-curator |
---|---|
permlink | pgm-curatorcpol1653003789194 |
category | hive-110369 |
json_metadata | {"tags":[],"app":"pgm/0.1","format":"markdown+html"} |
created | 2022-05-19 23:43:09 |
last_update | 2022-05-19 23:43:09 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 23:43:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,812 |
author_reputation | 3,409,490,822,394 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,352,769 |
net_rshares | 0 |
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? ๐คฃ๐
author | davedickeyyall |
---|---|
permlink | re-brianoflondon-rc4lvj |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 10:45:21 |
last_update | 2022-05-19 10:45:21 |
depth | 1 |
children | 8 |
last_payout | 2022-05-26 10:45:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.096 HBD |
curator_payout_value | 0.096 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 428 |
author_reputation | 908,895,568,805,086 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,336,104 |
net_rshares | 304,911,769,153 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
metzli | 0 | 301,296,376,869 | 100% | ||
chaosmagic23 | 0 | 3,615,392,284 | 100% | ||
mvarillavu | 0 | 0 | 100% | ||
papovu | 0 | 0 | 100% | ||
cedevu | 0 | 0 | 100% | ||
anelevu | 0 | 0 | 100% | ||
truongtuvu | 0 | 0 | 100% | ||
phithongvu | 0 | 0 | 100% |
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.
author | niallon11 |
---|---|
permlink | re-davedickeyyall-2022519t125956785z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-19 11:59:57 |
last_update | 2022-05-19 11:59:57 |
depth | 2 |
children | 2 |
last_payout | 2022-05-26 11:59:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 182 |
author_reputation | 628,261,358,027,240 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,483 |
net_rshares | 68,486,721,041 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davedickeyyall | 0 | 67,853,077,389 | 18% | ||
bilpcoinbpc | 0 | 633,643,652 | 5% |
<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>
author | beerlover |
---|---|
permlink | re-niallon11-re-davedickeyyall-2022519t125956785z-20220519t121423952z |
category | hive-110369 |
json_metadata | {"app":"beerlover/2.0"} |
created | 2022-05-19 12:14:24 |
last_update | 2022-05-19 12:14:24 |
depth | 3 |
children | 0 |
last_payout | 2022-05-26 12:14:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 528 |
author_reputation | 25,811,409,448,698 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,778 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sucrevu | 0 | 0 | 100% | ||
tracvu | 0 | 0 | 100% | ||
thuongvu | 0 | 0 | 100% | ||
sosanalia | 0 | 0 | 100% |
๐๐๐ !BEER
author | davedickeyyall |
---|---|
permlink | re-niallon11-rc4py0 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 12:13:12 |
last_update | 2022-05-19 12:13:12 |
depth | 3 |
children | 0 |
last_payout | 2022-05-26 12:13:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 908,895,568,805,086 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,760 |
net_rshares | 0 |
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)
author | taskmaster4450le |
---|---|
permlink | re-davedickeyyall-6wlp55 |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@taskmaster4450le/re-davedickeyyall-6wlp55"} |
created | 2022-05-19 16:20:33 |
last_update | 2022-05-19 16:20:33 |
depth | 2 |
children | 3 |
last_payout | 2022-05-26 16:20:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.169 HBD |
curator_payout_value | 0.168 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 2,189,094,681,482,897 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,343,436 |
net_rshares | 534,675,634,510 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davedickeyyall | 0 | 358,966,606,449 | 100% | ||
captainklaus | 0 | 13,658,223,780 | 100% | ||
emjoe | 0 | 13,945,882,556 | 100% | ||
thelogicaldude | 0 | 146,847,995,336 | 99% | ||
mirroredspork | 0 | 1,256,926,389 | 100% |
author | davedickeyyall |
---|---|
permlink | re-taskmaster4450le-rc59ny |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 19:19:09 |
last_update | 2022-05-19 19:19:09 |
depth | 3 |
children | 0 |
last_payout | 2022-05-26 19:19:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 908,895,568,805,086 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,347,414 |
net_rshares | 39,677,054,642 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theb0red1 | 0 | 31,956,431,539 | 10% | ||
dustbunny | 0 | 7,720,623,103 | 2.31% |
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)
author | ifarmgirl |
---|---|
permlink | re-taskmaster4450le-7tpqb7 |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@ifarmgirl/re-taskmaster4450le-7tpqb7"} |
created | 2022-05-20 00:33:27 |
last_update | 2022-05-20 00:33:27 |
depth | 3 |
children | 0 |
last_payout | 2022-05-27 00:33:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 1,106,978,570,072,917 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,353,480 |
net_rshares | 0 |
Lol! Yes you can buy some Weed products with HBD, lol. Now we can take your lightning too, lol. weedcash-store@v4v.app
author | thelogicaldude |
---|---|
permlink | re-taskmaster4450le-rc52cj |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 16:41:09 |
last_update | 2022-05-19 16:41:09 |
depth | 3 |
children | 0 |
last_payout | 2022-05-26 16:41:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 121 |
author_reputation | 362,839,108,289,073 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,343,923 |
net_rshares | 63,283,588,302 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davedickeyyall | 0 | 63,283,588,302 | 18% |
<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>
author | thepimpdistrict |
---|---|
permlink | 20220519t104530397z |
category | hive-110369 |
json_metadata | {"tags":["pimp","tokenpimp","pimpbot"],"app":"pimp-bot/4.0","format":"markdown"} |
created | 2022-05-19 10:45:30 |
last_update | 2022-05-19 10:45:30 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 10:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 567 |
author_reputation | 12,322,979,192,632 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,336,109 |
net_rshares | 0 |
> 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.
author | drceeyou |
---|---|
permlink | re-brianoflondon-2022519t125737653z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-19 11:57:36 |
last_update | 2022-05-19 11:57:36 |
depth | 1 |
children | 2 |
last_payout | 2022-05-26 11:57:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 12,088,207,211,076 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,425 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tracvu | 0 | 0 | 100% | ||
thuongvu | 0 | 0 | 100% | ||
tomenvu | 0 | 0 | 100% |
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)
author | metzli |
---|---|
permlink | re-drceeyou-75oszl |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@metzli/re-drceeyou-75oszl"} |
created | 2022-05-20 03:19:42 |
last_update | 2022-05-20 03:19:42 |
depth | 2 |
children | 1 |
last_payout | 2022-05-27 03:19:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 63,787,580,398,377 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,257 |
net_rshares | 0 |
I'm sure gonna stick around Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@drceeyou/re-metzli-7jjc9h)
author | drceeyou |
---|---|
permlink | re-metzli-7jjc9h |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@drceeyou/re-metzli-7jjc9h"} |
created | 2022-05-21 11:11:54 |
last_update | 2022-05-21 11:11:54 |
depth | 3 |
children | 0 |
last_payout | 2022-05-28 11:11:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 12,088,207,211,076 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,390,924 |
net_rshares | 0 |
**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)
author | ecency |
---|---|
permlink | re-2022520t185028281z |
category | hive-110369 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.20-welcome","format":"markdown+html"} |
created | 2022-05-20 18:50:30 |
last_update | 2022-05-20 18:50:30 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 18:50:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 375 |
author_reputation | 624,422,971,962,054 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,375,195 |
net_rshares | 0 |
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.
author | emeka4 |
---|---|
permlink | rc4kw1 |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 10:24:06 |
last_update | 2022-05-19 10:24:06 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 10:24:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 234,766,945,326,470 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,335,753 |
net_rshares | 0 |
Brilliant!
author | ericvancewalton |
---|---|
permlink | rc4y7u |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 15:11:54 |
last_update | 2022-05-19 15:11:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 15:11:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,411,138,183,991,510 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,341,749 |
net_rshares | 0 |
Bro you deserve a whole storm for this, congratulations for your excellent work.
author | fabian98 |
---|---|
permlink | re-brianoflondon-rc6txt |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 15:32:12 |
last_update | 2022-05-20 15:32:12 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 15:32:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 317,540,777,933,517 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,369,941 |
net_rshares | 0 |
You are the real MVP BOL. :')
author | finguru |
---|---|
permlink | rc4qcj |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 12:21:57 |
last_update | 2022-05-19 12:21:57 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 12:21:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 358,211,814,021,785 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,921 |
net_rshares | 0 |
What if I change my Profile Picture?
author | finguru |
---|---|
permlink | rc4w79 |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 14:28:24 |
last_update | 2022-05-19 14:28:24 |
depth | 1 |
children | 1 |
last_payout | 2022-05-26 14:28:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 358,211,814,021,785 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,340,654 |
net_rshares | 0 |
You can regenerate a new QR and it'll put your new image in it.
author | brianoflondon |
---|---|
permlink | re-finguru-rc4xu8 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 15:03:45 |
last_update | 2022-05-19 15:03:45 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 15:03:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.512 HBD |
curator_payout_value | 0.512 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,341,572 |
net_rshares | 1,612,691,439,285 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theb0red1 | 0 | 31,901,633,975 | 10% | ||
ecoinstant | 0 | 1,580,789,805,310 | 100% |
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.  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.
author | fragozar01 |
---|---|
permlink | re-brianoflondon-202266t195855144z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-06-06 23:59:18 |
last_update | 2022-06-06 23:59:18 |
depth | 1 |
children | 2 |
last_payout | 2022-06-13 23:59:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.781 HBD |
curator_payout_value | 0.781 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,373 |
author_reputation | 81,847,379,013,718 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,841,804 |
net_rshares | 2,604,262,625,845 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianoflondon | 0 | 2,594,344,024,205 | 100% | ||
clipoftheday | 0 | 9,918,601,640 | 100% |
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!
author | brianoflondon |
---|---|
permlink | re-fragozar01-rd3c0r |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.9"} |
created | 2022-06-07 04:48:30 |
last_update | 2022-06-07 04:48:30 |
depth | 2 |
children | 1 |
last_payout | 2022-06-14 04:48:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,846,463 |
net_rshares | 10,121,758,102 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clipoftheday | 0 | 10,121,758,102 | 100% |
Fixed it and it should be working with Tippin now. I sent you 2000 sats :-)
author | brianoflondon |
---|---|
permlink | re-brianoflondon-rd3d4k |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.9"} |
created | 2022-06-07 05:12:21 |
last_update | 2022-06-07 05:12:21 |
depth | 3 |
children | 0 |
last_payout | 2022-06-14 05:12:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,846,837 |
net_rshares | 10,329,060,615 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clipoftheday | 0 | 10,329,060,615 | 100% |
Congratulations ๐
author | franklin288 |
---|---|
permlink | re-brianoflondon-2022526t131957918z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-26 12:19:57 |
last_update | 2022-05-26 12:19:57 |
depth | 1 |
children | 0 |
last_payout | 2022-06-02 12:19:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 901,707,134,101 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,532,477 |
net_rshares | -2,759,389,122 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -2,759,389,122 | -0.1% |
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)
author | gadrian |
---|---|
permlink | re-brianoflondon-7kyzmw |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@gadrian/re-brianoflondon-7kyzmw"} |
created | 2022-05-20 15:10:18 |
last_update | 2022-05-20 15:10:18 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 15:10:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 642,831,013,067,672 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,369,357 |
net_rshares | 0 |
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
author | gangstalking |
---|---|
permlink | re-brianoflondon-lightning-addresses-for-everyone-on-hive-20220520t112934510z |
category | hive-110369 |
json_metadata | {"app":"hive-bot/0.6.3"} |
created | 2022-05-20 11:29:36 |
last_update | 2022-05-20 11:29:36 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 11:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 677 |
author_reputation | -67,597,107,868,724 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,363,689 |
net_rshares | -6,972,155,248 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -6,972,155,248 | -0.25% |
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)
author | headsink |
---|---|
permlink | re-brianoflondon-6ovnmk |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@headsink/re-brianoflondon-6ovnmk"} |
created | 2022-05-21 12:08:15 |
last_update | 2022-05-21 12:08:15 |
depth | 1 |
children | 0 |
last_payout | 2022-05-28 12:08:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 1,298,327,132,573 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,391,987 |
net_rshares | 0 |
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>
author | hivebuzz |
---|---|
permlink | notify-brianoflondon-20220520t033311 |
category | hive-110369 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-05-20 03:33:12 |
last_update | 2022-05-20 03:33:12 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 03:33:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 899 |
author_reputation | 369,403,396,566,762 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,459 |
net_rshares | 0 |
You deserve to be voted as witness, which I just did. Thank you for sharing this with us dear.
author | hopestylist |
---|---|
permlink | re-brianoflondon-rc4ree |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 12:44:39 |
last_update | 2022-05-19 12:44:39 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 12:44:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 508,394,525,769,927 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,338,356 |
net_rshares | 0 |
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)
author | ifarmgirl |
---|---|
permlink | re-brianoflondon-2m7rsd |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@ifarmgirl/re-brianoflondon-2m7rsd"} |
created | 2022-05-20 00:33:57 |
last_update | 2022-05-20 00:33:57 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 00:33:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 1,106,978,570,072,917 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,353,493 |
net_rshares | 0 |
@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?
author | ijatz |
---|---|
permlink | re-brianoflondon-redfvo |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.9"} |
created | 2022-07-02 02:21:33 |
last_update | 2022-07-02 02:21:33 |
depth | 1 |
children | 0 |
last_payout | 2022-07-09 02:21:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 528 |
author_reputation | 25,644,689,964,315 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,496,372 |
net_rshares | 0 |
Esta es una valiosa informaciรณn, muchas gracias por compartir
author | ismaelrd04 |
---|---|
permlink | re-brianoflondon-2022519t181746196z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-19 22:17:54 |
last_update | 2022-05-19 22:17:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 22:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 165,012,116,214,594 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,351,119 |
net_rshares | 0 |
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)
author | jfang003 |
---|---|
permlink | re-brianoflondon-e2pqz |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@jfang003/re-brianoflondon-e2pqz"} |
created | 2022-05-19 15:32:51 |
last_update | 2022-05-19 15:32:51 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 15:32:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 240 |
author_reputation | 643,701,816,967,274 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,342,206 |
net_rshares | 0 |
Man....This is just awesome on so many levels! Thank you for all the hard work you put into this community. Appreciate you sir!
author | jongolson |
---|---|
permlink | re-brianoflondon-rc5sk5 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 02:07:18 |
last_update | 2022-05-20 02:07:18 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 02:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 1,953,970,349,307,640 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,355,076 |
net_rshares | 0 |
AHHHH this is awesome!!!!
author | josehany |
---|---|
permlink | rc6ujn |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-20 15:43:39 |
last_update | 2022-05-20 15:43:39 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 15:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 1,352,701,105,812,145 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,370,362 |
net_rshares | 0 |
Amazing news! !LUV
author | katerinaramm |
---|---|
permlink | rc560n |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 18:00:27 |
last_update | 2022-05-19 18:00:27 |
depth | 1 |
children | 1 |
last_payout | 2022-05-26 18:00:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 686,022,470,179,765 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,345,819 |
net_rshares | 0 |
@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>
author | luvshares |
---|---|
permlink | re-rc560n-20220519t180121z |
category | hive-110369 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-05-19 18:01:21 |
last_update | 2022-05-19 18:01:21 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 18:01:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 560 |
author_reputation | 5,651,102,754,153 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,345,847 |
net_rshares | 0 |
This is very good work, I will use this in the future, thanks! Posted using [LasseCash](https://www.lassecash.com/@lasseehlers/re-brianoflondon-l3dbkcsp)
author | lasseehlers |
---|---|
permlink | re-brianoflondon-l3dbkcsp |
category | hive-110369 |
json_metadata | {"tags":["lassecash"],"format":"markdown","canonical_url":"https://www.lassecash.com/@lasseehlers/re-brianoflondon-l3dbkcsp","app":"lassecash/1.1.0"} |
created | 2022-05-19 18:01:18 |
last_update | 2022-05-19 18:01:18 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 18:01:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | -19,472,348,203,940 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,345,846 |
net_rshares | -430,465,091,315 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themarkymark | 0 | -430,465,091,315 | -1% |
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!
author | lemouth |
---|---|
permlink | rc50bx |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-19 15:57:36 |
last_update | 2022-05-19 15:57:36 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 15:57:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 182 |
author_reputation | 338,011,164,701,274 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,342,871 |
net_rshares | 0 |
Supported for sure.
author | manniman |
---|---|
permlink | re-brianoflondon-rc5jno |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 22:55:00 |
last_update | 2022-05-19 22:55:00 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 22:55:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 77,790,724,868,389 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,351,765 |
net_rshares | 0 |
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 ๐
author | marbrym |
---|---|
permlink | re-brianoflondon-2022519t81523279z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-19 12:15:24 |
last_update | 2022-05-19 12:15:24 |
depth | 1 |
children | 2 |
last_payout | 2022-05-26 12:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 544 |
author_reputation | 59,190,758,709,485 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,797 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
despana | 0 | 0 | 100% |
DO you understand how wiring money online works?
author | joeyarnoldvn |
---|---|
permlink | rc5uh6 |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-20 02:48:45 |
last_update | 2022-05-20 02:48:45 |
depth | 2 |
children | 1 |
last_payout | 2022-05-27 02:48:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 51,684,035,870,699 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,355,805 |
net_rshares | 0 |
Not reallyโค๏ธ
author | marbrym |
---|---|
permlink | re-joeyarnoldvn-2022519t232411690z |
category | hive-110369 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-20 03:24:12 |
last_update | 2022-05-20 03:24:12 |
depth | 3 |
children | 0 |
last_payout | 2022-05-27 03:24:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 59,190,758,709,485 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,323 |
net_rshares | 0 |
Just voted for your proposal! Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@metzli/re-brianoflondon-32i8sv)
author | metzli |
---|---|
permlink | re-brianoflondon-32i8sv |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@metzli/re-brianoflondon-32i8sv"} |
created | 2022-05-20 03:14:54 |
last_update | 2022-05-20 03:14:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 03:14:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 63,787,580,398,377 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,189 |
net_rshares | 0 |
Big step forwards for Hive today! Thanks a lot! Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@michelmake/re-brianoflondon-3amzn8)
author | michelmake |
---|---|
permlink | re-brianoflondon-3amzn8 |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@michelmake/re-brianoflondon-3amzn8"} |
created | 2022-05-19 13:10:12 |
last_update | 2022-05-19 13:10:12 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 13:10:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 38,156,784,734,657 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,338,904 |
net_rshares | 0 |
Preety cool ah!! Congragulations!! Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@mintymile/re-brianoflondon-6s893r)
author | mintymile |
---|---|
permlink | re-brianoflondon-6s893r |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@mintymile/re-brianoflondon-6s893r"} |
created | 2022-06-07 13:36:42 |
last_update | 2022-06-07 13:36:42 |
depth | 1 |
children | 0 |
last_payout | 2022-06-14 13:36:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 87,354,869,349,775 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,856,348 |
net_rshares | 970,930,226 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gangstalking | 0 | 970,930,226 | 0.5% |
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 :)  Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nathanmars/re-brianoflondon-4aym2u)
author | nathanmars |
---|---|
permlink | re-brianoflondon-4aym2u |
category | hive-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"]} |
created | 2022-05-19 12:24:30 |
last_update | 2022-05-19 12:24:30 |
depth | 1 |
children | 9 |
last_payout | 2022-05-26 12:24:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 401 |
author_reputation | 336,354,946,115,368 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,974 |
net_rshares | 51,248,824,175 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dudeontheweb | 0 | 51,248,824,175 | 100% |
You need to try it once more Nathan. Let's see if it works again. 
author | finguru |
---|---|
permlink | rc4w2u |
category | hive-110369 |
json_metadata | {"image":["https://images.hive.blog/DQmfSybyWvrCb3Vbfxo22mEsthzmRRedT999qx8ToZdjhMR/image.png"],"app":"hiveblog/0.1"} |
created | 2022-05-19 14:25:45 |
last_update | 2022-05-19 14:25:45 |
depth | 2 |
children | 8 |
last_payout | 2022-05-26 14:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 358,211,814,021,785 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,340,605 |
net_rshares | 14,967,794,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nathanmars | 0 | 14,967,794,697 | 10% |
This is exactly why I put the avatar in the middle of these :-) Very important part of the plan!
author | brianoflondon |
---|---|
permlink | re-finguru-rc4x31 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 14:47:27 |
last_update | 2022-05-19 14:47:27 |
depth | 3 |
children | 5 |
last_payout | 2022-05-26 14:47:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,341,059 |
net_rshares | 83,341,151,562 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nathanmars | 0 | 10,444,333,955 | 7% | ||
thomasthewolf | 0 | 72,896,817,607 | 93% |
1777 Sats sent ๐ค
author | nathanmars |
---|---|
permlink | re-finguru-rc6bh0 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 08:55:48 |
last_update | 2022-05-20 08:55:48 |
depth | 3 |
children | 1 |
last_payout | 2022-05-27 08:55:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 336,354,946,115,368 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,361,117 |
net_rshares | 0 |
> 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)
author | nickydee |
---|---|
permlink | re-brianoflondon-4zug3h |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@nickydee/re-brianoflondon-4zug3h"} |
created | 2022-10-18 06:05:48 |
last_update | 2022-10-18 06:05:48 |
depth | 1 |
children | 0 |
last_payout | 2022-10-25 06:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 202 |
author_reputation | 165,252,091,273,298 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 117,562,797 |
net_rshares | 0 |
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. ๐
author | nickydee |
---|---|
permlink | re-brianoflondon-rf80l8 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.9"} |
created | 2022-07-18 14:36:45 |
last_update | 2022-07-18 14:36:45 |
depth | 1 |
children | 0 |
last_payout | 2022-07-25 14:36:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 134 |
author_reputation | 165,252,091,273,298 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,959,026 |
net_rshares | 0 |
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 !
author | olympicdragon |
---|---|
permlink | re-brianoflondon-2022519t18250257z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-19 10:25:00 |
last_update | 2022-05-19 10:25:00 |
depth | 1 |
children | 1 |
last_payout | 2022-05-26 10:25:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 34,659,922,596,582 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,335,778 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nitopvu | 0 | 0 | 100% | ||
pedrovu | 0 | 0 | 100% | ||
nerviavu | 0 | 0 | 100% | ||
phandongvu | 0 | 0 | 100% |
How did it go? Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@metzli/re-olympicdragon-7q7zsv)
author | metzli |
---|---|
permlink | re-olympicdragon-7q7zsv |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@metzli/re-olympicdragon-7q7zsv"} |
created | 2022-05-20 03:15:36 |
last_update | 2022-05-20 03:15:36 |
depth | 2 |
children | 0 |
last_payout | 2022-05-27 03:15:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 63,787,580,398,377 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,201 |
net_rshares | 0 |
Well my friend!!! lets try this out!!! 
author | pastzam |
---|---|
permlink | rc5cdt |
category | hive-110369 |
json_metadata | {"image":["https://images.hive.blog/DQmbknvzDVpLZdtpVDxxA1ChrpuHPbSoQLPJRVvsyNFBgRp/image.png"],"app":"hiveblog/0.1"} |
created | 2022-05-19 20:17:54 |
last_update | 2022-05-19 20:17:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 20:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 2,315,182,613,022 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,348,376 |
net_rshares | 0 |
<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>
author | pizzabot |
---|---|
permlink | re-lightning-addresses-for-everyone-on-hive-20220519t234408z |
category | hive-110369 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-05-19 23:44:09 |
last_update | 2022-05-19 23:44:09 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 23:44:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 256 |
author_reputation | 7,592,128,870,682 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,352,794 |
net_rshares | 0 |
Proposal voted!
author | pnc |
---|---|
permlink | re-brianoflondon-2022519t175138348z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-19 21:51:36 |
last_update | 2022-05-19 21:51:36 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 21:51:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 31,760,797,277,823 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,350,540 |
net_rshares | 0 |
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>
author | poshtoken | ||||||
---|---|---|---|---|---|---|---|
permlink | re-brianoflondon-lightning-addresses-for-everyone-on-hive86287 | ||||||
category | hive-110369 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.1","payoutToUser":["steemadi"]}" | ||||||
created | 2022-05-19 11:09:57 | ||||||
last_update | 2022-07-21 14:09:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2022-05-26 11:09:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 1.115 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,325 | ||||||
author_reputation | 5,550,289,984,297,163 | ||||||
root_title | "Lightning Addresses for EVERYONE on Hive!" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 113,336,569 | ||||||
net_rshares | 3,512,257,255,796 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fw206 | 0 | 3,508,704,614,126 | 100% | ||
chaosmagic23 | 0 | 3,552,641,670 | 100% | ||
posorio | 0 | 0 | 100% | ||
shanivu | 0 | 0 | 100% | ||
ngohaox6 | 0 | 0 | 100% | ||
ngotienluan | 0 | 0 | 100% |
Wow, that's cool ๐ https://media.giphy.com/media/nFFguNjdeotwc/giphy.gif !BEER
author | prinzvalium |
---|---|
permlink | re-brianoflondon-rc64ip |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 06:22:03 |
last_update | 2022-05-20 06:22:03 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 06:22:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 94,983,278,777,634 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,358,660 |
net_rshares | 0 |
Very cool. Send me some sats :-) 
author | prinzvalium |
---|---|
permlink | re-brianoflondon-rc64od |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 06:25:27 |
last_update | 2022-05-20 06:25:27 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 06:25:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 94,983,278,777,634 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,358,718 |
net_rshares | 0 |
Hello Brian, there seems to be a bug in your code. I received multiple HIVE payments for a single lightning transmission. 
author | prinzvalium |
---|---|
permlink | re-brianoflondon-rc68ix |
category | hive-110369 |
json_metadata | {"tags":"hive-110369"} |
created | 2022-05-20 07:48:36 |
last_update | 2022-05-20 07:53:33 |
depth | 1 |
children | 5 |
last_payout | 2022-05-27 07:48:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.284 HBD |
curator_payout_value | 0.284 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 94,983,278,777,634 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,360,051 |
net_rshares | 919,666,671,100 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
prinzvalium | 0 | 400,727,925,915 | 100% | ||
atma.love | 0 | 518,938,745,185 | 100% |
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.
author | brianoflondon |
---|---|
permlink | re-prinzvalium-rc68tg |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 07:58:33 |
last_update | 2022-05-20 07:58:33 |
depth | 2 |
children | 4 |
last_payout | 2022-05-27 07:58:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 162 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,360,163 |
net_rshares | 0 |
I send you the Hive I received later
author | prinzvalium |
---|---|
permlink | re-brianoflondon-rc6a73 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 08:28:15 |
last_update | 2022-05-20 08:28:15 |
depth | 3 |
children | 3 |
last_payout | 2022-05-27 08:28:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.157 HBD |
curator_payout_value | 0.157 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 36 |
author_reputation | 94,983,278,777,634 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,360,622 |
net_rshares | 508,602,841,188 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
atma.love | 0 | 508,602,841,188 | 100% |
You're a freaking genius dude. This is exactly what Hive has needed for the longest time. Thank you, thank you, thank you.
author | randr10 |
---|---|
permlink | re-brianoflondon-2022524t95426374z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-24 13:54:27 |
last_update | 2022-05-24 13:54:27 |
depth | 1 |
children | 0 |
last_payout | 2022-05-31 13:54:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 20,320,370,585,417 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,472,661 |
net_rshares | 0 |
Supported, amazing stuff, well done
author | renovatio |
---|---|
permlink | rc6x6z |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-20 16:45:00 |
last_update | 2022-05-20 16:45:00 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 16:45:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 8,775,121,044,882 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,371,984 |
net_rshares | 0 |
This is a great work, thank you for making it happens real good ๐ค
author | repayme4568 |
---|---|
permlink | re-brianoflondon-2022519t125340544z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-19 11:56:06 |
last_update | 2022-05-19 11:56:06 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 11:56:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 122,309,046,126,611 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,393 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sucrevu | 0 | 0 | 100% |
Wondering what's your referral code for crypto.com?
author | rzc24-nftbbg |
---|---|
permlink | re-brianoflondon-202269t21717903z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-06-09 09:17:21 |
last_update | 2022-06-09 09:17:21 |
depth | 1 |
children | 2 |
last_payout | 2022-06-16 09:17:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 130,072,009,133,970 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,907,066 |
net_rshares | 0 |
Use my referral link https://crypto.com/app/wkva2kezch to sign up for Crypto.com and we both get $25 USD :) Here you go.
author | brianoflondon |
---|---|
permlink | re-rzc24-nftbbg-rd7ely |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.9"} |
created | 2022-06-09 09:34:48 |
last_update | 2022-06-09 09:34:48 |
depth | 2 |
children | 1 |
last_payout | 2022-06-16 09:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,907,274 |
net_rshares | 0 |
Thanks! I hope I am doing it right this time.
author | rzc24-nftbbg |
---|---|
permlink | re-brianoflondon-202269t31413588z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-06-09 10:14:15 |
last_update | 2022-06-09 10:14:15 |
depth | 3 |
children | 0 |
last_payout | 2022-06-16 10:14:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 130,072,009,133,970 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,907,829 |
net_rshares | 0 |
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.
author | shainemata |
---|---|
permlink | re-brianoflondon-2022519t85139696z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-19 13:51:39 |
last_update | 2022-05-19 13:51:39 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 13:51:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 32,734,008,898,342 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,339,811 |
net_rshares | 0 |
This is really awesome! Thanks for working int his :D
author | soyrosa |
---|---|
permlink | re-brianoflondon-rc4pdg |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 12:00:54 |
last_update | 2022-05-19 12:00:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 12:00:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 335,707,483,911,582 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,337,510 |
net_rshares | 0 |
Absolutely brilliant! Now we just have to wait until the BTC Lightning network becomes useful :)
author | stayoutoftherz |
---|---|
permlink | re-brianoflondon-rc4uxi |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 14:00:54 |
last_update | 2022-05-19 14:00:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 14:00:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 1,336,517,510,173,107 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,340,025 |
net_rshares | 0 |
Really awesome I did wonder if one could tip accounts with btc here like we do hive. But doesn't it defeat the purpose? ๐ค
author | stevenson7 |
---|---|
permlink | re-brianoflondon-2022519t114437524z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-19 10:44:36 |
last_update | 2022-05-19 10:44:36 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 10:44:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 251,299,899,455,975 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,336,090 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sosanalia | 0 | 0 | 100% |
This is too cool. I used the lightning the other. Super fast.
author | stevenson7 |
---|---|
permlink | re-brianoflondon-2022525t101620228z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-25 09:16:21 |
last_update | 2022-05-25 09:16:21 |
depth | 1 |
children | 0 |
last_payout | 2022-06-01 09:16:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 62 |
author_reputation | 251,299,899,455,975 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,496,239 |
net_rshares | 0 |
This is pretty cool! 
author | thaddeusprime |
---|---|
permlink | re-brianoflondon-rc79ef |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 21:08:39 |
last_update | 2022-05-20 21:08:39 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 21:08:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 158 |
author_reputation | 3,279,448,304,336 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,378,530 |
net_rshares | 0 |
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!
author | the13anarchist |
---|---|
permlink | re-brianoflondon-s4gdhf |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2023.10.1"} |
created | 2023-11-21 02:56:03 |
last_update | 2023-11-21 02:56:03 |
depth | 1 |
children | 0 |
last_payout | 2023-11-28 02:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 29,261,651,035,845 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 129,041,012 |
net_rshares | 0 |
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!
author | thebalanceguy |
---|---|
permlink | re-brianoflondon-2022525t15013222z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-05-25 14:00:12 |
last_update | 2022-05-25 14:00:12 |
depth | 1 |
children | 0 |
last_payout | 2022-06-01 14:00:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 241 |
author_reputation | 8,422,660,186,394 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,501,920 |
net_rshares | 0 |
holy crap this is so cool!
author | thebtcadvantage |
---|---|
permlink | rc6vix |
category | hive-110369 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-05-20 16:09:03 |
last_update | 2022-05-20 16:09:03 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 16:09:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.165 HBD |
curator_payout_value | 0.165 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 432,583,603,076 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,371,009 |
net_rshares | 533,571,303,068 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ogre-radio | 0 | 533,571,303,068 | 100% |
$WINE
author | theguruasia |
---|---|
permlink | re-brianoflondon-rc5wxu |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 03:41:54 |
last_update | 2022-05-20 03:41:54 |
depth | 1 |
children | 1 |
last_payout | 2022-05-27 03:41:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 72,573,039,033,926 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,576 |
net_rshares | 0 |
<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>
author | wine.bot |
---|---|
permlink | 20220520t034216757z |
category | hive-110369 |
json_metadata | {"tags":["wine","token","winebot"],"app":"wine-bot/4.0","format":"markdown"} |
created | 2022-05-20 03:42:15 |
last_update | 2022-05-20 03:42:15 |
depth | 2 |
children | 0 |
last_payout | 2022-05-27 03:42:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 832 |
author_reputation | 8,656,058,035,409 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,356,580 |
net_rshares | 0 |
This is freaking EPIC!!! We need got all use these addresses on Twitter for our usernames! Changing mine now actually! 
author | thelogicaldude |
---|---|
permlink | re-brianoflondon-rc510c |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 16:12:12 |
last_update | 2022-05-19 16:12:12 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 16:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 210 |
author_reputation | 362,839,108,289,073 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,343,260 |
net_rshares | 0 |
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โฆ
author | thelogicaldude |
---|---|
permlink | re-brianoflondon-rc529g |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 16:39:18 |
last_update | 2022-05-19 16:39:18 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 16:39:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 265 |
author_reputation | 362,839,108,289,073 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,343,878 |
net_rshares | 0 |
This is pretty cool, I am curious how much it ends up getting used.
author | themarkymark |
---|---|
permlink | re-brianoflondon-rc5oyc |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 00:49:21 |
last_update | 2022-05-20 00:49:21 |
depth | 1 |
children | 0 |
last_payout | 2022-05-27 00:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 1,779,457,996,919,720 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,353,746 |
net_rshares | -2,337,757,507 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
woodmurderedhat | 0 | -2,337,757,507 | -100% |
Is there a % cut from what is tipped outside of transaction fees?
author | themarkymark |
---|---|
permlink | re-brianoflondon-rc5qsv |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 01:29:15 |
last_update | 2022-05-20 01:29:15 |
depth | 1 |
children | 1 |
last_payout | 2022-05-27 01:29:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 1,779,457,996,919,720 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,354,305 |
net_rshares | -2,436,144,541 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
woodmurderedhat | 0 | -2,436,144,541 | -100% |
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.
author | brianoflondon |
---|---|
permlink | re-themarkymark-rc6oa7 |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-20 13:32:33 |
last_update | 2022-05-20 13:32:33 |
depth | 2 |
children | 0 |
last_payout | 2022-05-27 13:32:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 120 |
author_reputation | 760,655,352,092,696 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,366,742 |
net_rshares | 0 |
amazing, thanks! @tipu curate
author | tobetada |
---|---|
permlink | re-brianoflondon-rc4uxg |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 14:00:51 |
last_update | 2022-05-19 14:00:51 |
depth | 1 |
children | 1 |
last_payout | 2022-05-26 14:00:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 599,713,618,024,140 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,340,023 |
net_rshares | 0 |
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted 👌</a> (Mana: 9/39) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
author | tipu |
---|---|
permlink | re-re-brianoflondon-rc4uxg-20220519t140059z |
category | hive-110369 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-05-19 14:00:57 |
last_update | 2022-05-19 14:00:57 |
depth | 2 |
children | 0 |
last_payout | 2022-05-26 14:00:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 55,935,276,290,772 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,340,026 |
net_rshares | 0 |
This is great news! Thanks for doing and sharing it! Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@tokenizedsociety/re-brianoflondon-73pt5v)
author | tokenizedsociety |
---|---|
permlink | re-brianoflondon-73pt5v |
category | hive-110369 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-110369","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@tokenizedsociety/re-brianoflondon-73pt5v"} |
created | 2022-05-24 01:06:12 |
last_update | 2022-05-24 01:06:12 |
depth | 1 |
children | 0 |
last_payout | 2022-05-31 01:06:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 129,668,072,799,729 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,460,024 |
net_rshares | 0 |
This is absolutely amazing work! Thank you ***so*** much for your brilliant contribution to our glorious ***Hive Blockchain***! 
author | tydynrain |
---|---|
permlink | re-brianoflondon-2022716t105422481z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.30-mobile","format":"markdown+html"} |
created | 2022-07-16 20:54:24 |
last_update | 2022-07-16 20:54:24 |
depth | 1 |
children | 0 |
last_payout | 2022-07-23 20:54:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 204,522,621,800,995 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,916,614 |
net_rshares | 0 |
Good work! It would be interesting to see this integrated clearly into onboarding processes to make initial power ups of new accounts more efficient.
author | ura-soul |
---|---|
permlink | re-brianoflondon-rc5izc |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.7"} |
created | 2022-05-19 22:40:24 |
last_update | 2022-05-19 22:40:24 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 22:40:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 149 |
author_reputation | 844,446,720,477,395 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,351,531 |
net_rshares | 0 |
*This is really amazing! Congratz!* ๐
author | vikvitnik |
---|---|
permlink | re-brianoflondon-rcyd0y |
category | hive-110369 |
json_metadata | {"tags":["hive-110369"],"app":"peakd/2022.05.9"} |
created | 2022-06-04 12:22:09 |
last_update | 2022-06-04 12:22:09 |
depth | 1 |
children | 0 |
last_payout | 2022-06-11 12:22:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 230,380,381,785,264 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,775,920 |
net_rshares | 13,126,217,464 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clipoftheday | 0 | 13,126,217,464 | 100% |
Wow, this is some amazing work Brian. I'll keep tabs on this project, your work will be supported. Keep going mate!!!
author | weone |
---|---|
permlink | re-brianoflondon-2022716t2145578z |
category | hive-110369 |
json_metadata | {"tags":["v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-07-16 16:15:57 |
last_update | 2022-07-16 16:15:57 |
depth | 1 |
children | 0 |
last_payout | 2022-07-23 16:15:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 8,803,381,691,355 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,911,173 |
net_rshares | 0 |
Can this (or anything similar) be used by exchanges as a transfer method, when people buy/sell Hive and/or Hive Dollars (HBD)?
author | xplosive |
---|---|
permlink | re-brianoflondon-2022519t192952823z |
category | hive-110369 |
json_metadata | {"tags":["hive-110369","v4vapp","lightning","btc","leofinance","proofofbrain","development","bitcoin","palnet","dhf"],"app":"ecency/3.0.29-mobile","format":"markdown+html"} |
created | 2022-05-19 17:29:54 |
last_update | 2022-05-19 17:29:54 |
depth | 1 |
children | 0 |
last_payout | 2022-05-26 17:29:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 209,193,118,674,967 |
root_title | "Lightning Addresses for EVERYONE on Hive!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 113,344,995 |
net_rshares | 0 |