<center></center> A big part of the [project I'm trying to build right now](https://peakd.com/hive-167922/@edicted/magitek-tokenomics) DEPENDS on the witness price feed. While we are trapped in the <code>void</code> behind the <code>firewall</code> the only way to guess how much FIRE tokens are worth will be to assume they are pegged to Hive. Not a great solution but it should be good enough in the beginning. Considering the only way to create FIRE will be to send HIVE to @null it makes sense that it would maintain the peg for at least long enough to come up with some better solutions. This peg is very important because it will estimate the value of FIRE. Using that estimation I'll figure out the value of all the other tokens (MANA, LIGHTNING, ICE) so if the value of FIRE is wrong the value of all the other tokens will also be proportionately incorrect. I'm starting to realize that even though the price of FIRE should be hard-pegged to the upside due to being able to destroy HIVE for it, this is actually not the case. It's possible that FIRE is worth more than Hive and users wouldn't realize it because there is no other baseline but the price feed. When it really comes down to it, the only way to know how much something is worth is to track how much users on the outside of the network are paying for it. When I boot up this project there will be very little connection to the outside so this will be quite hard to calculate. I'll figure it out. Definitely need to set up over-the-counter trades. Shouldn't be too hard. <center></center> >#### Do you solemnly swear to to tell the truth, the whole truth, and nothing but the truth? #### Sure, why not? But the point of this post is to showcase how ridiculous Hive is in many aspects. I always get reminded of these facts when I find the strength to continue development and learning about the API. Our documentation is trash and our functions are cluttered and nonsensical half the time. We always need more devs. Hopefully this time around we'll actually be able to retain them rather than lose them to the bear market. <center></center> #### So yesterday I started tracking the price feed. There are so many things wrong here I don't even know where to begin. First of all lets start with why the price feed exists. Hive does not know how much HBD to print without it. If 1 Hive is worth 10 cents very little HBD will get printed because HBD printing needs to match inflation. If our inflation rate is only 8% we need to print less HBD when the price is low so we don't print too much. If 1 Hive was worth $10 we'd print x100 times more HBD than if it was 10 cents. #### So what's wrong. So so many things... first of all, this 'feed_publish' operation isn't the only way for witnesses to change the feed. Many witnesses started doing it another way more recently. #### https://github.com/someguy123/hivefeed-js @someguy123 @drakos @yabapmatt @rishi556 (@hextech witness) So apparently even my own witness team has a hand in this. There's a new way to post price feed that looks like this:  #### <code>witness_set_properties</code> By changing the <code>hbd_exchange_rate</code> on the witness properties this gives witnesses another way to change the feed. Why is this useful? Because the <code>feed_publish</code> operation requires the active key and the witness_set_properties only requires the witness' signing key. It's a nice way to add some protection to the active key so that funds can be less easily stolen in the event of a hack. The problem with this clusterfuck is that how the hell am I supposed to convert this gigantic hex string into the useful price feed that I actually require? >19020000000000000353424400000000e80300000000000003535445454d0000 >17020000000000000353424400000000e80300000000000003535445454d0000 >fa010000000000000353424400000000e80300000000000003535445454d0000 >18020000000000000353424400000000e80300000000000003535445454d0000 >79020000000000000353424400000000e80300000000000003535445454d0000 >85020000000000000353424400000000e80300000000000003535445454d0000 Upon further review, the only numbers that change are the first four digits. This makes sense as only the HBD price changes while the other three variables remain static. So what happens when we run this thing through a HEX decoder? #### https://codebeautify.org/hex-string-converter  ### SBD and STEEM!!!!! GAH, I thought we were past this bullshit! The ghost of Christmas Hostile Takeover remains. Not only that, it wasn't even able to decode the beginning part that I actually need. Here's what it's supposed to look like: > base: '0.505 HBD', quote: '1.000 HIVE' Considering there are only 4 parts to this hex it's probably: > 0.505 SBD 1.000 STEEM That's being stored in the code. The reason why 3 of the parts remain static across all <code>witness_set_properties</code> updates is because "SBD 1.000 STEEM" never changes. ### No problem, right? I should easily be able to find the documentation on this. All I have to do is decode 4 hex digits. How hard could it be? Over an hour later and all I have is more questions as I fall down the rabbit hole of shitty documentation wondering how this patchwork hackjob operates. ##### https://openhive-network.github.io/dhive/index.html I use this DHIVE API. There are many clues here. <center></center> It appears as though the price has been serialized into this hexadecimal form. Serialization is a very important process that occurs when we need every node to be on exactly the same page. A single digit out of place would cause an error and possibly even an unintended fork of the network. #### So how do I decode this shit? Someone who actually knows what they are doing will let me know. 100% upvote pending. This is the future of development: getting paid to help people with their tech problems is a must. https://stackoverflow.com/ is due for a huge upgrade. ### In any case There's still a lot more stuff to say. First of all, it is very foolish to even pretend that this operation is an HDB EXCHANGE RATE. @Dan Larimar was a little to big for his britches on that one. This is not an HBD price feed it is VERY OBVIOUSLY a USD price feed. The network simply assumes that HBD is pegged to USD, which of course it is not. On top of HBD not being pegged, not using the correct verbiage is downright confusing and betrays what is actually happening in the background. ### USD PRICE FEED We need to know how much Hive is worth in terms of USD, not HBD. Why? Because USD is the larger network connected to a much bigger community. The stability of USD allows the feed to anchor Hive to the greater network, just like I'm trying to anchor my project to Hive with Fire tokens. When the witness post their "HBD" feeds they are really posting "USD" feeds and calling it HBD as if HBD is the same thing as USD. Pretty ridiculous on every level. What do you think, @blocktrades? An HBD feed isn't useful; a USD feed is (which is exactly what we have but we call it HBD to act like we have a functioning hard-pegged stable coin). Even if we did have a hard-pegged stable coin it would still be a USD feed, as the only purpose is to determine the price according to the outside world. <center></center> ### Underutilized It's very clear to me that we are completely wasting one of the most valuable resources we have: witnesses. Networks like ChainLink are working day and night to come up with decentralized oracle systems, and Hive already has a decentralized oracle system built in and we don't even use it. The only oracle service Witnesses are providing at the moment is this price feed. Why? There are so many things we could be doing with this. For example, if witnesses were feeding Bitcoin block hashes into the system we could be running lotteries and other unhackable gambling dapps on Hive. [Project Lottoshi](https://peakd.com/hive-167922/@edicted/project-lottoshi) comes to mind. If witnesses were monitoring certain Bitcoin wallets or wallets on other networks we [could be doing atomic swaps right now.](https://peakd.com/hive-102930/@netuoso/atomic-swaps-with-hive-core-integration) ### Conclusion At the end of the day we always need more devs, cleaner code, and better documentation. We're constantly touting that Hive is a great place to build because "it scales". Yeah that's great. Too bad the learning curve and the documentation is dogshit. I shouldn't have to waste an hour trying to figure out how to decode a price feed. That's fucking ridiculous. Multiply that frustration by x1000 to know what it's like to try and build here. We've got a long way to go. As Jeff Bezos would say: "It's still day one." Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@edicted/witnesses-as-oracles-vastly-underutilized-resource)
author | edicted |
---|---|
permlink | witnesses-as-oracles-vastly-underutilized-resource |
category | hive-167922 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["magitek","hextech","palnet","leo","hivedev","hive","witness","oracle","leofinance"],"canonical_url":"https://leofinance.io/@edicted/witnesses-as-oracles-vastly-underutilized-resource","links":["https://peakd.com/hive-167922/@edicted/magitek-tokenomics","https://github.com/someguy123/hivefeed-js","https://codebeautify.org/hex-string-converter","https://openhive-network.github.io/dhive/index.html","https://stackoverflow.com/","https://peakd.com/hive-167922/@edicted/project-lottoshi","https://peakd.com/hive-102930/@netuoso/atomic-swaps-with-hive-core-integration"],"image":["https://images.hive.blog/DQmPMBUep2qU143C8RsUo3unu9UxT4hyst4Mpp6vj2pv58h/crystal-ball.jpg","https://images.hive.blog/DQmSzedsjPmkLHfPtSYtM64EeMvB5j9aqiGfGvXkGBngZdZ/witness.jpg","https://images.hive.blog/DQmPEBzkTsrodjXuHzHUoCfwBZZc7hCLVGVwdPqcu4Vtozp/t1.jpg","https://images.hive.blog/DQmSq81XbRAY3UzyCxh4Y1zCay6Z7FSFi4FZadKFwAyHEBE/t1.jpg","https://images.hive.blog/DQmToQSBZS8FapiK6wtUyt1k8zsQzfuMmNNM3htu2PgkL2P/t1.jpg","https://images.hive.blog/DQmVw1RQCGJsnRbBeAxWD8F44WvAg1m3aoTfaT6TmsmjWd8/t1.jpg","https://images.hive.blog/DQmZAtHxAo44MQt6FUBGibyke55rePu3DmLeTKcdty2x9QP/oracle-prophecy-crystal.jpg"]} |
created | 2021-05-11 18:51:24 |
last_update | 2021-05-11 18:51:24 |
depth | 0 |
children | 19 |
last_payout | 2021-05-18 18:51:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 43.062 HBD |
curator_payout_value | 32.998 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,600 |
author_reputation | 3,497,853,150,183,574 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,640,929 |
net_rshares | 97,045,002,737,871 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xeldal | 0 | 6,364,061,251,049 | 12.5% | ||
enki | 0 | 7,340,611,131,315 | 31.5% | ||
simba | 0 | 79,897,614,577 | 100% | ||
boatymcboatface | 0 | 81,475,669,551 | 5% | ||
gregory-f | 0 | 741,227,420,979 | 41% | ||
kingscrown | 0 | 8,365,458,857 | 5% | ||
theshell | 0 | 21,835,964,287 | 5% | ||
kenny-crane | 0 | 341,620,175,701 | 50% | ||
garagebill | 0 | 18,982,879,751 | 100% | ||
mangou007 | 0 | 285,016,541 | 10% | ||
hitmeasap | 0 | 83,585,392,778 | 50% | ||
ssjsasha | 0 | 493,477,058,315 | 100% | ||
arcange | 0 | 141,814,982,381 | 2% | ||
pcste | 0 | 28,832,571,180 | 90% | ||
raphaelle | 0 | 1,817,030,197 | 2% | ||
edouard | 0 | 56,437,734,491 | 100% | ||
jamesbrown | 0 | 1,282,283,428,362 | 100% | ||
jphamer1 | 0 | 9,062,303,724,061 | 100% | ||
jrcornel | 0 | 664,978,572,676 | 100% | ||
scaredycatguide | 0 | 25,388,351,252 | 50% | ||
borran | 0 | 673,577,809,932 | 75% | ||
bert0 | 0 | 914,020,893 | 10% | ||
johnhtims | 0 | 2,196,653,819 | 100% | ||
theb0red1 | 0 | 40,970,505,293 | 20% | ||
pixiehunter | 0 | 21,868,990,158 | 100% | ||
anotherjoe | 0 | 9,154,674,943 | 90% | ||
netaterra | 0 | 211,404,817,434 | 8% | ||
mattclarke | 0 | 217,735,069,971 | 15% | ||
escapeamericanow | 0 | 48,724,850,188 | 90% | ||
krnel | 0 | 483,509,914,675 | 25% | ||
daveks | 0 | 218,676,893,228 | 5% | ||
uwelang | 0 | 3,731,677,617 | 0.6% | ||
titusfrost | 0 | 115,128,372,811 | 100% | ||
petrvl | 0 | 21,619,559,117 | 2.5% | ||
moondancer762 | 0 | 6,131,367,277 | 100% | ||
abh12345 | 0 | 918,069,188,258 | 25% | ||
whatsup | 0 | 302,116,655,220 | 100% | ||
mg-nz | 0 | 2,053,486,781 | 60% | ||
okean123 | 0 | 22,220,195,154 | 54% | ||
fortinbuff | 0 | 1,665,912,903 | 90% | ||
r0nd0n | 0 | 90,888,109,950 | 50% | ||
dylanhobalart | 0 | 164,311,543,903 | 66% | ||
mitchelljaworski | 0 | 16,280,333,708 | 100% | ||
builderofcastles | 0 | 24,298,309,302 | 25% | ||
ahmadmanga | 0 | 605,738,280 | 8.4% | ||
ixindamix | 0 | 96,050,685,452 | 50% | ||
walterjay | 0 | 17,029,251,479 | 2% | ||
taskmanager | 0 | 60,843,723 | 5% | ||
v4vapid | 0 | 7,110,886,875,358 | 45% | ||
anthonyadavisii | 0 | 273,670,947,048 | 51% | ||
ericwilson | 0 | 200,639,725,254 | 100% | ||
tiamaria | 0 | 14,340,793,274 | 100% | ||
automaton | 0 | 2,651,717,057 | 100% | ||
steemitboard | 0 | 13,523,500,067 | 3% | ||
sn0n | 0 | 233,156,597,846 | 75% | ||
siriusgaia | 0 | 1,631,271,379 | 100% | ||
ambyr00 | 0 | 7,136,864,994 | 5% | ||
amri | 0 | 1,395,672,218 | 100% | ||
alexis555 | 0 | 4,321,186,979,929 | 48% | ||
pouchon | 0 | 1,338,926,148,077 | 28% | ||
eirik | 0 | 11,284,457,546 | 100% | ||
louisthomas | 0 | 160,450,015,309 | 100% | ||
preparedwombat | 0 | 362,831,438,207 | 42% | ||
freebornsociety | 0 | 2,042,962,288 | 10% | ||
dickturpin | 0 | 2,188,741,438 | 6% | ||
perceive | 0 | 261,853,657,592 | 100% | ||
sepracore | 0 | 4,079,682,807,424 | 100% | ||
bearbear613 | 0 | 96,667,253,368 | 100% | ||
khussan | 0 | 695,073,019 | 100% | ||
swelker101 | 0 | 38,382,233,077 | 25% | ||
scooter77 | 0 | 4,604,896,898 | 50% | ||
flauwy | 0 | 24,021,516,699 | 10% | ||
mdosev | 0 | 25,845,234,548 | 59% | ||
belahejna | 0 | 3,648,008,673 | 2.5% | ||
alphacore | 0 | 138,370,065,033 | 20% | ||
avisk | 0 | 591,783,975 | 54% | ||
joeyarnoldvn | 0 | 2,351,188,154 | 8.21% | ||
digitalis | 0 | 103,499,647,698 | 100% | ||
forexbrokr | 0 | 36,258,995,630 | 100% | ||
geekgirl | 0 | 1,503,579,245,126 | 100% | ||
kiokizz | 0 | 1,706,443,261 | 45% | ||
mcoinz79 | 0 | 3,743,054,099 | 100% | ||
summertooth | 0 | 13,644,934,103 | 100% | ||
dante31 | 0 | 6,824,987,424 | 6% | ||
goldkey | 0 | 183,034,548,004 | 21% | ||
approximate | 0 | 747,268,909 | 45% | ||
felt.buzz | 0 | 17,162,954,989 | 2% | ||
wargof | 0 | 1,202,371,396 | 65% | ||
resiliencia | 0 | 1,477,747,166,175 | 100% | ||
francosteemvotes | 0 | 1,196,772,441 | 4% | ||
buggedout | 0 | 2,630,855,193,464 | 100% | ||
lalupita | 0 | 44,602,923,335 | 24% | ||
nuthman | 0 | 1,805,904,214,368 | 100% | ||
valchiz | 0 | 19,256,088,494 | 30% | ||
santigs | 0 | 41,215,673,266 | 62% | ||
nadhora | 0 | 1,761,525,227 | 100% | ||
angelusnoctum | 0 | 16,866,739,978 | 100% | ||
bahagia-arbi | 0 | 1,458,959,068 | 12% | ||
pele23 | 0 | 142,219,012,099 | 30% | ||
parejan | 0 | 2,694,435,297 | 1.2% | ||
fbslo | 0 | 118,538,036,359 | 100% | ||
accelerator | 0 | 65,046,079,103 | 4% | ||
marcusantoniu26 | 0 | 572,121,807,627 | 100% | ||
aidefr | 0 | 763,724,725 | 3% | ||
blokz | 0 | 3,056,123,198 | 75% | ||
chamudiliyanage | 0 | 4,235,500,323 | 100% | ||
roleerob | 0 | 19,289,733,218 | 6% | ||
fatman | 0 | 7,487,646,126 | 2% | ||
votehero | 0 | 27,439,473,663 | 7.2% | ||
revisesociology | 0 | 455,962,580,757 | 25% | ||
yabapmatt | 0 | 3,057,426,632,961 | 100% | ||
littleboy | 0 | 77,999,374,714 | 100% | ||
jondoe | 0 | 24,432,340,894 | 100% | ||
tobetada | 0 | 192,897,050,042 | 15% | ||
nathanpieters | 0 | 17,440,210,677 | 41.5% | ||
flamingirl | 0 | 1,456,238,619 | 10% | ||
cryptonik | 0 | 1,801,081,633 | 78% | ||
mtl1979 | 0 | 1,604,820,711 | 50% | ||
kaniz | 0 | 4,830,742,791 | 100% | ||
robotics101 | 0 | 773,316,869 | 4% | ||
funt33 | 0 | 757,618,081 | 100% | ||
lpv | 0 | 587,146,250 | 1.8% | ||
andyblack | 0 | 29,358,096,203 | 50% | ||
as31 | 0 | 509,453,873 | 1.5% | ||
rombtc | 0 | 1,327,026,865 | 15% | ||
wiseagent | 0 | 168,367,549,041 | 20% | ||
fourfourfun | 0 | 670,899,403 | 2.25% | ||
duke77 | 0 | 5,430,545,852 | 25% | ||
phortun | 0 | 49,460,750,338 | 10% | ||
tmholdings | 0 | 2,149,094,331 | 5% | ||
tdre | 0 | 637,238,895,025 | 100% | ||
tryskele | 0 | 1,246,800,500 | 5% | ||
bala41288 | 0 | 667,873,964,508 | 100% | ||
edicted | 0 | 6,543,534,453,700 | 100% | ||
chorock | 0 | 238,520,139,418 | 40% | ||
philnewton | 0 | 922,023,963 | 12.5% | ||
psos | 0 | 1,632,139,377 | 25% | ||
videosteemit | 0 | 61,602,954,377 | 100% | ||
itharagaian | 0 | 796,372,215 | 4% | ||
trincowski | 0 | 65,097,631,965 | 20% | ||
victorialegend | 0 | 812,958,868 | 100% | ||
fabian98 | 0 | 20,005,895,792 | 50% | ||
tobias-g | 0 | 781,226,392 | 18.75% | ||
steemmoderation | 0 | 54,091,990 | 100% | ||
steemflagrewards | 0 | 326,628,222,092 | 83% | ||
mproxima | 0 | 15,200,542,854 | 100% | ||
shmoogleosukami | 0 | 245,179,575,754 | 100% | ||
moeenali | 0 | 7,098,651,181 | 1% | ||
ravisarikonda | 0 | 5,806,529,899 | 100% | ||
mysearchisover | 0 | 189,782,888,984 | 100% | ||
onlavu | 0 | 5,257,026,389 | 10% | ||
bozz | 0 | 14,238,634,760 | 2% | ||
bertrayo | 0 | 60,403,235,583 | 100% | ||
cst90 | 0 | 126,001,267,293 | 100% | ||
beeyou | 0 | 56,589,421,053 | 100% | ||
aditus | 0 | 573,766,186 | 100% | ||
futurecurrency | 0 | 35,521,574,083 | 60% | ||
nukebot | 0 | 0 | 100% | ||
up-vote | 0 | 578,085,169 | 100% | ||
fermionico | 0 | 14,317,122,051 | 3% | ||
teutonium | 0 | 966,844,291 | 25% | ||
blockchainyouth | 0 | 244,168,081,101 | 100% | ||
erikah | 0 | 603,106,402,975 | 50% | ||
bil.prag | 0 | 77,492,505,058 | 15% | ||
paulo380 | 0 | 103,097,384 | 90% | ||
cryptoinvestsvk | 0 | 38,441,479,050 | 100% | ||
louis88 | 0 | 1,103,571,384,945 | 50% | ||
strosalia | 0 | 1,614,648,434 | 100% | ||
goldvault | 0 | 9,814,701,980 | 25% | ||
stmdev | 0 | 387,573,090 | 10% | ||
prinzy | 0 | 570,900,176 | 100% | ||
racibo | 0 | 4,865,894,536 | 25% | ||
knowhow92 | 0 | 18,768,282,151 | 25% | ||
blainjones | 0 | 4,357,973,909 | 14% | ||
abdulmath | 0 | 12,143,897,599 | 50% | ||
gadrian | 0 | 10,004,420,983 | 6% | ||
lordbutterfly | 0 | 428,218,760,672 | 50% | ||
z3ll | 0 | 6,556,568,772 | 100% | ||
tsurmb | 0 | 1,185,530,360 | 100% | ||
imcore | 0 | 1,024,526,772 | 10% | ||
tresor | 0 | 12,034,150,067 | 10% | ||
kennybot | 0 | 19,663,553,091 | 100% | ||
flagawhale | 0 | 3,689,169,298 | 78% | ||
promobot | 0 | 8,090,054,969 | 9% | ||
russiandownload | 0 | 643,309,264 | 54% | ||
mrs.goldkey | 0 | 4,986,668,506 | 25% | ||
fw206 | 0 | 381,520,625,941 | 100% | ||
coolarth | 0 | 4,062,644,811 | 100% | ||
hatoto | 0 | 175,002,417,387 | 50% | ||
eii | 0 | 3,228,906,237 | 10% | ||
davidesimoncini | 0 | 4,197,267,912 | 26.5% | ||
valiantegg | 0 | 3,410,078,269 | 100% | ||
carilinger | 0 | 82,453,541,430 | 12.5% | ||
spamfarmer | 0 | 3,866,892,185 | 50% | ||
solarwarrior | 0 | 1,695,217,941,617 | 100% | ||
apshamilton | 0 | 1,368,864,970,879 | 100% | ||
imtase | 0 | 22,909,503,019 | 40% | ||
gaottantacinque | 0 | 236,435,974 | 100% | ||
arkllytexvi | 0 | 121,476,391 | 100% | ||
garygabby | 0 | 520,725,675 | 50% | ||
shortsegments | 0 | 642,322,016 | 1.2% | ||
olumzy | 0 | 13,538,263,357 | 3.6% | ||
gallerani | 0 | 710,022,400 | 12% | ||
coolace | 0 | 1,233,961,152 | 50% | ||
marivic10 | 0 | 522,484,631 | 1.5% | ||
hamismsf | 0 | 533,397,360,301 | 100% | ||
liberlandpress | 0 | 15,584,646,042 | 45% | ||
jk6276 | 0 | 1,108,354,987 | 15% | ||
french-tech | 0 | 238,019,656,434 | 40% | ||
unlisteem | 0 | 0 | 10% | ||
yaelg | 0 | 52,502,004,284 | 90% | ||
gasaeightyfive | 0 | 321,401,379 | 100% | ||
doldrums | 0 | 1,871,867,119 | 100% | ||
unlisteemersph | 0 | 0 | 20% | ||
ten-years-before | 0 | 435,310,808 | 40% | ||
bengiles | 0 | 813,831,023,791 | 100% | ||
pboulet | 0 | 3,884,152,895 | 4% | ||
stats-generator | 0 | 134,593,219 | 100% | ||
marcocasario | 0 | 217,036,236,384 | 100% | ||
numanbutt | 0 | 2,033,186,197 | 100% | ||
cribbio | 0 | 299,558,354 | 100% | ||
cliffagreen | 0 | 2,467,351,904 | 26% | ||
kristianoako | 0 | 81,730,553 | 100% | ||
silverkey | 0 | 5,007,804,755 | 25% | ||
silvervault | 0 | 9,865,753,106 | 25% | ||
cryptycoon | 0 | 4,856,007,517 | 25% | ||
cryptoclerk | 0 | 4,922,509,243 | 25% | ||
crypto.story | 0 | 21,015,654 | 40% | ||
admiralbot | 0 | 5,657,851,028 | 99% | ||
univers.crypto | 0 | 103,970,401 | 40% | ||
jrxplorer | 0 | 0 | 100% | ||
mintrawa | 0 | 73,292,686,510 | 40% | ||
gamingthesystem | 0 | 0 | 100% | ||
gamingthesystem1 | 0 | 0 | 100% | ||
gamingthesystem2 | 0 | 0 | 100% | ||
gamingthesystem3 | 0 | 0 | 100% | ||
gamingthesystem4 | 0 | 0 | 100% | ||
gamingthesystem5 | 0 | 0 | 100% | ||
gamingthesystem6 | 0 | 0 | 100% | ||
thrasher666 | 0 | 1,998,178,700 | 60% | ||
priyanarc | 0 | 39,025,984,447 | 25% | ||
memeteca | 0 | 1,332,097,010 | 10% | ||
cwow2 | 0 | 32,899,931,153 | 5% | ||
theycallmedan | 0 | 6,590,558,999,708 | 9% | ||
glastar | 0 | 596,500,278,551 | 80% | ||
jpbliberty | 0 | 485,277,519,312 | 100% | ||
khan.dayyanz | 0 | 17,452,628,485 | 100% | ||
lestrange | 0 | 256,190,165,926 | 100% | ||
mrsbozz | 0 | 14,954,071,671 | 60% | ||
anonsteve | 0 | 70,399,041,205 | 100% | ||
flyingbolt | 0 | 865,337,439 | 12% | ||
sm-lvl1 | 0 | 524,378,673 | 45% | ||
creary | 0 | 579,122,776 | 12.5% | ||
lallo | 0 | 15,973,435,458 | 44% | ||
ctime | 0 | 332,745,923,700 | 2.5% | ||
leosoph | 0 | 98,817,770,281 | 100% | ||
darhainer | 0 | 527,999,120 | 45% | ||
limka | 0 | 196,308,788 | 100% | ||
leeyh2 | 0 | 26,581,129,667 | 100% | ||
steemstreems | 0 | 705,243,471 | 20% | ||
abbenay | 0 | 839,023,715 | 12.5% | ||
scripsio | 0 | 395,334,697,075 | 90% | ||
doze | 0 | 175,327,915,430 | 25% | ||
mister-eagle | 0 | 2,214,782,465 | 100% | ||
hashkings | 0 | 1,309,965,787 | 1.8% | ||
denizcakmak | 0 | 930,851,717 | 100% | ||
ambifokus | 0 | 930,549,153 | 20% | ||
bagholders | 0 | 1,634,622,002,228 | 100% | ||
engrsayful | 0 | 3,785,773,297 | 8.4% | ||
photographercr | 0 | 3,950,377,485 | 2.52% | ||
pervitin | 0 | 2,172,760,351 | 100% | ||
d-company | 0 | 1,220,643,496 | 100% | ||
crazydaisy | 0 | 299,689,583 | 100% | ||
bigmoneyman | 0 | 904,901,482 | 50% | ||
poliwalt10 | 0 | 547,533,499 | 55% | ||
megavest | 0 | 2,847,657,735 | 12% | ||
anaclark | 0 | 10,266,980,918 | 100% | ||
sfr-treasury | 0 | 65,041,174 | 63% | ||
steementertainer | 0 | 136,982,488 | 40% | ||
likwid | 0 | 1,278,667,321 | 9% | ||
haxxdump | 0 | 116,719,571 | 10% | ||
iktisat | 0 | 653,837,217 | 100% | ||
travelwritemoney | 0 | 1,194,822,162 | 12% | ||
bagofincome | 0 | 1,569,223,520 | 100% | ||
nalexadre | 0 | 188,711,702 | 40% | ||
queengaga | 0 | 4,754,274,579 | 100% | ||
dalz1 | 0 | 647,367,162 | 50% | ||
hamza-sheikh | 0 | 179,000,518 | 100% | ||
steem-key | 0 | 4,290,049,358 | 100% | ||
tiffin | 0 | 625,722,374 | 12% | ||
abh12345.pal | 0 | 3,653,870,546 | 100% | ||
abh12345.leo | 0 | 5,209,614,119 | 100% | ||
leovoter | 0 | 2,408,603,784 | 50% | ||
mindtrap-leo | 0 | 2,695,857,939 | 100% | ||
leo.voter | 0 | 9,641,234,940,619 | 12% | ||
empoderat | 0 | 7,890,804,235,024 | 100% | ||
leoaction | 0 | 271,056,544 | 100% | ||
leoup | 0 | 64,219,715 | 100% | ||
bearjohn | 0 | 926,143,424 | 50% | ||
athomewithcraig | 0 | 1,395,440,697 | 6% | ||
babytarazkp | 0 | 8,262,306,235 | 85% | ||
botefarm.sport | 0 | 114,635,008 | 9.49% | ||
elianaicgomes | 0 | 9,099,357,317 | 14% | ||
janaveda | 0 | 129,053,913,967 | 100% | ||
tomhall.leo | 0 | 121,364,225 | 100% | ||
claudio83.leo | 0 | 622,822,218 | 100% | ||
kanibot | 0 | 17,603,925,999 | 100% | ||
ufm.pay | 0 | 304,071,608 | 5% | ||
urun | 0 | 66,109,156,511 | 100% | ||
maxuvd | 0 | 28,409,391,977 | 8% | ||
shtup | 0 | 52,347,772,021 | 100% | ||
korver | 0 | 478,192,168 | 50% | ||
espni | 0 | 708,872,920 | 45% | ||
downvoteme | 0 | 11,781,872,154 | 25% | ||
spinvest-leo | 0 | 1,475,803,465 | 5% | ||
tonimontana.leo | 0 | 1,301,494,650 | 50% | ||
therealyme | 0 | 521,647,606,469 | 8% | ||
chris-uk | 0 | 21,527,849,412 | 100% | ||
rosa.leo | 0 | 1,971,534,323 | 100% | ||
javb | 0 | 942,159,802 | 7.8% | ||
snoochieboochies | 0 | 50,787,717,226 | 6% | ||
crimianales | 0 | 3,907,624,865 | 49.2% | ||
sumatranate.leo | 0 | 6,632,067,502 | 100% | ||
pjansen.leo | 0 | 130,041,025 | 100% | ||
flauwy.apx | 0 | 1,265,256,264 | 10% | ||
mintawa.app | 0 | 95,584,773 | 40% | ||
redwarbull | 0 | 4,976,637,478 | 25% | ||
pavelsku | 0 | 2,150,410,572 | 5% | ||
chireerocks.leo | 0 | 103,341,226 | 100% | ||
steemonboarder | 0 | 1,219,903,821 | 100% | ||
chireerocks.pal | 0 | 133,921,709 | 100% | ||
leomaniacsgr | 0 | 904,794,616 | 50% | ||
sharkthelion | 0 | 63,289,805,197 | 25% | ||
toni.pal | 0 | 65,819,244 | 9.49% | ||
gloriaolar | 0 | 6,795,816,559 | 4.5% | ||
juanvegetarian | 0 | 13,270,656,302 | 100% | ||
onestop | 0 | 1,961,304,073 | 6% | ||
steempeer.app | 0 | 22,657,702 | 40% | ||
ragequitter | 0 | 526,894,605 | 45% | ||
xxxxxxxxxxxxxxxx | 0 | 2,004,981,623 | 6% | ||
dalz4 | 0 | 802,727,538 | 90% | ||
amsnoopy | 0 | 0 | 40% | ||
fengchao | 0 | 7,836,185,714 | 2% | ||
dagadu | 0 | 0 | 100% | ||
leofinance | 0 | 36,461,883,439 | 12% | ||
laruche | 0 | 170,718,062,036 | 4% | ||
master-lamps | 0 | 11,624,128,770 | 100% | ||
bnk | 0 | 13,248,613,974 | 10% | ||
softworld | 0 | 792,565,317,405 | 54% | ||
quello | 0 | 1,003,473,063 | 18.75% | ||
globalcurrencies | 0 | 705,386,246 | 100% | ||
sugarelys | 0 | 45,973,185,863 | 100% | ||
pinoysports | 0 | 0 | 10% | ||
hive-143869 | 0 | 6,727,919,433 | 4% | ||
ninnu | 0 | 58,661,748,164 | 12.5% | ||
zuly63 | 0 | 2,390,946,434 | 9.6% | ||
localgrower | 0 | 9,186,349,014 | 10% | ||
ar2r | 0 | 351,891,900 | 50% | ||
cavart | 0 | 3,428,746,795 | 100% | ||
actioncats | 0 | 8,350,241,235 | 9.6% | ||
beehivetrader | 0 | 589,243,940 | 6% | ||
silvergoldhunter | 0 | 260,990,309 | 100% | ||
brofund-leo | 0 | 1,841,087,420 | 100% | ||
lithajacobs | 0 | 3,399,688,102 | 100% | ||
ykroys | 0 | 31,435,683,149 | 100% | ||
picsart | 0 | 410,528,556 | 100% | ||
jelly13 | 0 | 28,312,681,296 | 8.5% | ||
sicarius | 0 | 854,970,354 | 100% | ||
splinterstats | 0 | 2,086,274,368 | 45% | ||
zkalemiss.leo | 0 | 1,884,612,934 | 100% | ||
nikoleondas.leo | 0 | 517,284,496 | 100% | ||
bold-n-italics | 0 | 0 | 100% | ||
rezoanulv.leo | 0 | 4,743,392,040 | 100% | ||
dwixer | 0 | 10,344,076,205 | 25% | ||
discohedge | 0 | 5,323,492,566 | 5% | ||
leoneil.leo | 0 | 17,298,386 | 12% | ||
altleft | 0 | -14,780,780,796,940 | -100% | ||
curatorcat.leo | 0 | 2,603,321,466 | 100% | ||
resiliencia.leo | 0 | 1,916,127,078 | 100% | ||
officialhisha | 0 | 83,940,761 | 100% | ||
gungunkrishu.leo | 0 | 2,783,404,313 | 100% | ||
anthonyadavisleo | 0 | 165,510,609 | 53% | ||
podewils | 0 | 444,800,219 | 100% | ||
reonarudo | 0 | 7,322,192,825 | 100% | ||
tamiapt6 | 0 | 28,490,679,838 | 100% | ||
leoline | 0 | 10,716,358,661 | 60% | ||
rupinder | 0 | 125,736,544 | 2% | ||
netaterra.leo | 0 | 914,096,968 | 25% | ||
leoschein | 0 | 1,861,490,921 | 50% | ||
gualteramarelo | 0 | 8,774,017,282 | 50% | ||
he-index | 0 | 9,811,945,954 | 20% | ||
emrebeyler.leo | 0 | 1,514,539,145 | 100% | ||
godfather.ftw | 0 | 1,099,971,568 | 100% | ||
ibkdagreat | 0 | 291,702,710 | 8.54% | ||
cryptoxicate.leo | 0 | 0 | 50% | ||
ctpsb.pal | 0 | 644,871,391 | 100% | ||
leo.tokens | 0 | 1,066,203,449 | 12% | ||
dhedge-drips | 0 | 4,544,456,983 | 5% | ||
ravthijo | 0 | 1,836,413,077 | 73% | ||
hykss | 0 | 794,818,295 | 10% | ||
specific | 0 | 398,843,791,645 | 100% | ||
moeen.leo | 0 | 1,098,063,894 | 100% | ||
resiliencia.pal | 0 | 1,808,229,217 | 100% | ||
ikaro | 0 | 5,243,336,930 | 100% | ||
ctpsb.cut | 0 | 712,248,233 | 20% | ||
cielitorojo | 0 | 3,031,627,464 | 6% | ||
shurbertum | 0 | 32,558,996 | 12% | ||
calacoins | 0 | 3,078,665,276 | 100% | ||
scholaris.leo | 0 | 2,411,145,087 | 100% | ||
bulldog-joy | 0 | 52,179,264,147 | 100% | ||
ripe | 0 | 13,457,793,594 | 45% | ||
lols | 0 | 17,202,045,343 | 50% | ||
tfranzini | 0 | 15,235,532,380 | 100% | ||
mephistophenes | 0 | 670,920,771 | 100% | ||
meowcurator | 0 | 3,239,137,722 | 50% | ||
kriszrokk | 0 | 1,180,394,591 | 100% | ||
almocambio | 0 | 533,011,943 | 45% | ||
archon-drips | 0 | 2,849,136,101 | 5% | ||
an-man | 0 | 1,326,949,975 | 100% | ||
megaleoschein | 0 | 665,252,346 | 40% | ||
tejimundo | 0 | 6,491,143,474 | 100% | ||
dugsix | 0 | 753,444,999 | 50% | ||
zdigital222 | 0 | 48,237,649 | 91.6% | ||
star.leo | 0 | 3,050,775,765 | 100% | ||
phul | 0 | 2,066,362,386 | 5% | ||
abuahmedfx | 0 | 672,963,254 | 100% | ||
brofi | 0 | 174,295,181,488 | 5% | ||
nbabets | 0 | 579,323,151 | 100% | ||
jk6276.tribes | 0 | 593,069,814 | 9% | ||
mayor333 | 0 | 15,224,072,438 | 100% | ||
bhealy | 0 | 915,149,467 | 50% | ||
cryptololo | 0 | 791,075,330 | 10.8% | ||
generatornation | 0 | 592,555,088 | 50% | ||
darinapogodina | 0 | 812,725,707 | 50% | ||
sunsetjesus | 0 | -14,608,243,564 | -100% | ||
impurgent | 0 | 643,894,592 | 40% | ||
maurofolco | 0 | 752,965,806 | 50% | ||
meesterleo | 0 | 1,778,292,261 | 100% | ||
mcedric | 0 | 21,198,248,456 | 40% | ||
primalamusica | 0 | 98,369,556,259 | 50% | ||
lifedrain | 0 | 764,755,469 | 100% | ||
calumam-leo | 0 | 2,628,748,603 | 100% | ||
makhinoo | 0 | 0 | 100% | ||
kuro-kun | 0 | 27,701,302 | 100% | ||
zedcell | 0 | 59,212,709,661 | 100% | ||
known.prince | 0 | 236,428,016 | 100% | ||
augustowerlang | 0 | 0 | 100% | ||
venus2203 | 0 | 169,021,070,120 | 100% | ||
wolsfgan | 0 | 0 | 100% |
So many questions about this post. I haven't been able to keep up with everything because I don't know much about cryptocurrency. But as I see the central issue is thinking we can be getting more for the coin if we weren't pegging it to USD or that the issue lies deep within the code. The reference to SBD and STEEM is a matter of comparison, right? That crypto seems to be doing better on account of having figured out their strings of code? Also, I understand the danger of pegging the price of HBD to other decentralized currencies, but I guess in economy there's a certain element of gambit. If there's another Big Depression would that mean the prices of HBD will go to the bottom? Or could these currencies stay afloat among a scenario like that?
author | bertrayo |
---|---|
permlink | re-edicted-qsyo7a |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 21:11:39 |
last_update | 2021-05-11 21:11:39 |
depth | 1 |
children | 2 |
last_payout | 2021-05-18 21:11:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 754 |
author_reputation | 745,495,434,837,747 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,643,411 |
net_rshares | 64,764,680,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edicted | 0 | 64,764,680,147 | 1% |
HBD is supposed to be pegged to $1. Next hardfork it will be a lot more stable as anyone can print HBD for $1.05 worth of Hive. This should cap HBD to $1.05 until we hit the haircut level, Which is if HBD > 10% of our total market cap the pegs breaks in both directions. We might have to raise it above 10%.
author | edicted |
---|---|
permlink | re-bertrayo-qsyt3h |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 22:57:18 |
last_update | 2021-05-11 22:57:18 |
depth | 2 |
children | 1 |
last_payout | 2021-05-18 22:57: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 | 313 |
author_reputation | 3,497,853,150,183,574 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,645,101 |
net_rshares | 0 |
Oh, I see.
author | bertrayo |
---|---|
permlink | re-edicted-qszqpm |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-12 11:04:51 |
last_update | 2021-05-12 11:04:51 |
depth | 3 |
children | 0 |
last_payout | 2021-05-19 11:04: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 | 10 |
author_reputation | 745,495,434,837,747 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,655,393 |
net_rshares | 0 |
And if HBD is eliminated, would that be a solution? I ask this because I have seen it in the opinions of other programmers. Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@fabian98/re-edicted-fhkkv)
author | fabian98 |
---|---|
permlink | re-edicted-fhkkv |
category | hive-167922 |
json_metadata | {"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@fabian98/re-edicted-fhkkv"} |
created | 2021-05-12 14:48:42 |
last_update | 2021-05-12 14:48:42 |
depth | 1 |
children | 5 |
last_payout | 2021-05-19 14:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 217 |
author_reputation | 317,540,777,933,517 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,658,620 |
net_rshares | 68,224,737,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edicted | 0 | 68,224,737,167 | 1% |
Nah we need to fix HBD it's not that hard to fix the peg. Having a stable-coin on chain is too valuable to throw away.
author | edicted |
---|---|
permlink | re-fabian98-qt050u |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-12 16:12:30 |
last_update | 2021-05-12 16:12:30 |
depth | 2 |
children | 4 |
last_payout | 2021-05-19 16:12: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 | 119 |
author_reputation | 3,497,853,150,183,574 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,660,368 |
net_rshares | 0 |
Doubt solved
author | fabian98 |
---|---|
permlink | qt0dfa |
category | hive-167922 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2021-05-12 19:14:00 |
last_update | 2021-05-12 19:14:00 |
depth | 3 |
children | 3 |
last_payout | 2021-05-19 19:14: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 | 12 |
author_reputation | 317,540,777,933,517 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,663,842 |
net_rshares | 0 |
Congratulations @edicted! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@edicted/replies.png?202105110059"></td><td>You got more than 17500 replies.<br>Your next target is to reach 18000 replies.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@edicted) 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="/hivebuzz/@hivebuzz/tour-update5"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xecznXF.png"></a></td><td><a href="/hivebuzz/@hivebuzz/tour-update5">Hive Tour Update - Decentralized blacklists and Mutes lists</a></td></tr></table> ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22109%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/147)!
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-edicted-20210511t190423000z |
category | hive-167922 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2021-05-11 19:04:21 |
last_update | 2021-05-11 19:04:21 |
depth | 1 |
children | 0 |
last_payout | 2021-05-18 19:04: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 | 1,133 |
author_reputation | 369,459,251,118,706 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,641,183 |
net_rshares | 0 |
Your project sound so nice and Plus goes doing a double check of what is underneath the frontend. I feel sorry that I can help little before reading this information I wasn't aware of these problems.I peak from time to time on the proposal and witness pages but most of the time I kinda forget. I thing I would love is a more Clear central hub where to see the roadmaps and project currently under construction. I sketched it a bit but left unfinished
author | mproxima |
---|---|
permlink | re-edicted-2021512t14599511z |
category | hive-167922 |
json_metadata | {"tags":["magitek","hextech","palnet","leo","hivedev","hive","witness","oracle","leofinance"],"app":"ecency/3.0.18-mobile","format":"markdown+html"} |
created | 2021-05-12 12:59:12 |
last_update | 2021-05-12 12:59:12 |
depth | 1 |
children | 0 |
last_payout | 2021-05-19 12:59: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 | 451 |
author_reputation | 35,195,361,821,240 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,656,924 |
net_rshares | 0 |
Why not use a price feed from coingecko.com or does that introduce *other* problems?
author | preparedwombat |
---|---|
permlink | re-edicted-qsyk6n |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 19:44:45 |
last_update | 2021-05-11 19:44:45 |
depth | 1 |
children | 2 |
last_payout | 2021-05-18 19:44:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 883,936,489,742,569 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,641,864 |
net_rshares | 192,424,005,757 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edicted | 0 | 192,424,005,757 | 3% |
#### Even the devs I talk to tell me the same thing. The problem is that I'm creating an oracle consensus algorithm (proof-of-burn). So if the price feed gets hacked what am I going to say? Sorry guys I guess we shouldn't have trusted a random corporation for this information! Yeah, no shit. This is exactly why elected politicians (witnesses) must be trusted with relaying this valuable information. It's the entire foundation of DPOS. But yeah if I can cheat in the beginning while everything is centralized I probably will.
author | edicted |
---|---|
permlink | re-preparedwombat-qsykdo |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 19:49:03 |
last_update | 2021-05-11 19:49:45 |
depth | 2 |
children | 0 |
last_payout | 2021-05-18 19:49:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 538 |
author_reputation | 3,497,853,150,183,574 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,641,918 |
net_rshares | 58,030,801,313 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
zedcell | 0 | 58,030,801,313 | 100% |
The interesting thing here to note is that our witnesses don't come up with the information themselves. Their nodes reach out to other nodes like coinmarketcap, coingecko, or better yet exchange APIs like Binance, Huobi, and Bittrex to divine the info and report it to the blockchain. The goal is to keep my node as basic as possible so that anyone can run one. My focus is to start with only using Hive full nodes to get the info I need. Will expand from there once I actually have a working product.
author | edicted |
---|---|
permlink | re-preparedwombat-qsykw3 |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 20:00:06 |
last_update | 2021-05-11 20:00:06 |
depth | 2 |
children | 0 |
last_payout | 2021-05-18 20:00: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 | 507 |
author_reputation | 3,497,853,150,183,574 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,642,122 |
net_rshares | 0 |
We use `witness_set_properties` instead of `feed_publish` because it only requires the signing key, which means that if someone does manage to get into our server, they won't be able to steal our funds. I recently added that feature to hivefeed-js as its the feed publisher that we use and I'd like to have our keys be as secure as possible.
author | rishi556 |
---|---|
permlink | re-edicted-qsyib3 |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 19:04:15 |
last_update | 2021-05-11 19:04:15 |
depth | 1 |
children | 2 |
last_payout | 2021-05-18 19:04:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 341 |
author_reputation | 134,528,170,600,561 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,641,178 |
net_rshares | 64,364,335,479 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edicted | 0 | 64,364,335,479 | 1% |
>Why is this useful? Because the feed_publish operation requires the active key and the witness_set_properties only requires the witness' signing key. It's a nice way to add some protection to the active key so that funds can be less easily stolen in the event of a hack. So you'd say this statement is accurate?
author | edicted |
---|---|
permlink | re-rishi556-qsyj75 |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-11 19:23:30 |
last_update | 2021-05-11 19:23:30 |
depth | 2 |
children | 0 |
last_payout | 2021-05-18 19:23: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 | 314 |
author_reputation | 3,497,853,150,183,574 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,641,515 |
net_rshares | 0 |
I feel like feed_publish could probably be depreciated in favour of the other method since it's more secure.
author | shmoogleosukami |
---|---|
permlink | re-rishi556-qszyr6 |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-12 13:57:06 |
last_update | 2021-05-12 13:57:06 |
depth | 2 |
children | 0 |
last_payout | 2021-05-19 13:57: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 | 108 |
author_reputation | 229,385,617,821,986 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,657,709 |
net_rshares | 0 |
Keep up the good fight for documentation devs.... ^>^ one day we might have something... Til then, I'm just hoping a full rewrite, top down comes along and sweeps me off my little feet.
author | sn0n |
---|---|
permlink | re-edicted-qszthf |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2021.04.5"} |
created | 2021-05-12 12:03:18 |
last_update | 2021-05-12 12:03:18 |
depth | 1 |
children | 0 |
last_payout | 2021-05-19 12:03: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 | 188 |
author_reputation | 25,801,997,535,483 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,656,116 |
net_rshares | 0 |
Speak network plans to bring oracles to Hive. We are very close to that being finished.
author | theycallmedan |
---|---|
permlink | qt045w |
category | hive-167922 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2021-05-12 15:53:57 |
last_update | 2021-05-12 15:53:57 |
depth | 1 |
children | 0 |
last_payout | 2021-05-19 15:53:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.262 HBD |
curator_payout_value | 0.262 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 1,254,058,380,138,691 |
root_title | "Witnesses as Oracles: Vastly Underutilized Resource" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 103,660,005 |
net_rshares | 1,024,874,339,829 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
edicted | 0 | 1,024,874,339,829 | 15% |