<center>  </center> This is the missing white paper and analysis of delegated proof of stake (DPOS). The goal of this paper is to provide an analysis of why DPOS works and what makes it robust. An [early description of DPOS can be found at bitshares.org](https://bitshares.org/technology/delegated-proof-of-stake-consensus/); however, that description also includes many aspects that are not part of the actual consensus process. All blockchains are fundamentally a deterministic state machine acted upon by transactions. Consensus is the process of agreeing on a deterministic order of transactions and filtering invalid transactions. There are many different consensus algorithms that could produce equivalent ordering of transactions, but DPOS has proven robust, secure, and efficient by years of reliable operation on multiple blockchains. Like all consensus algorithms, the most harm the block producers can cause is censorship. All blocks must be valid according to the deterministic open source state machine logic. ## Summary of DPOS Algorithm The DPOS algorithm is divided into two parts: electing a group of block producers and scheduling production. The election process makes sure that stakeholders are ultimately in control because stakeholders lose the most when the network does not operate smoothly. How people are elected has little impact on how consensus is achieved on a minute by minute basis. Therefore, this document will focus on how consensus is reached after the block producers have been chosen. To help explain this algorithm I want to assume 3 block producers, A, B, and C. Because consensus requires 2⁄3 + 1 to resolve all cases, this simplified model will assume that producer C is deemed the tie breaker. In the real world there would be 21 or more block producers. Like proof of work, the general rule is that longest chain wins. Any time an honest peer sees a valid strictly longer chain it will switch from its current fork to the longer one. I will to show by example how DPOS operates under most conceivable network conditions. These examples should help you understand why DPOS is robust and hard to break. ## Normal Operation Under normal operation block producers take turns producing a block every 3 seconds. Assuming no one misses their turn then this will produce the longest possible chain. It is invalid for a block producer to produce a block at any other time slot than the one they are scheduled for. <center>  </center> ## Minority Fork Up to 1⁄3 of the nodes can be malicious or malfunction and create a minority fork. In this case the minority fork will only produce one block every 9 seconds while the majority fork will produce 2 blocks every 9 seconds. Once again, the honest 2⁄3 majority will always be longer than the minority. <center>  </center> ## Double Production by Disconnected Minority The minority can attempt to produce an unlimited number of forks, but all of their forks will be shorter than the majority chain because the minority is limited to growing the chain slower than the majority. <center>  </center> ## Network Fragmentation It is entirely possible for the network to fragment in which case no fork has a majority of the block producers. In this case the longest chain will fall to the largest minority. When network connectivity is restored the smaller minorities will naturally switch to the longest chain and unambiguous consensus will be restored. <center>  </center> It is possible for there to be 3 forks where the two longest forks are the same length. In this case the producers on the 3rd (smaller fork) will break the tie when they rejoin the network. There is an odd number of producers so it is impossible to maintain a tie for long. Later we will cover producer shuffling which will randomize order of production to ensure that even if two forks have the same number of producers, the forks will grow in different length bursts causing one fork to take over the other. ## Double Production by Connected Minority Under this scenario minority B produced two or more alternative blocks on their time slot. The next scheduled producer ( C ), may choose to build off of any one of the alternatives produced by B. When this happens it will become the longest chain and all nodes that selected B1 will switch forks. It does not matter how many alternative blocks a minority of bad producers attempt to propagate, they will never be part of the longest chain for more than a round. <center>  </center> ## Last Irreversible Block In the event of network fragmentation it is possible for multiple forks to continue to grow for a prolonged period of time. In the long-run, the longest chain will win, but observers require a means to know with certainty when a block is absolutely part of the fastest growing chain. This can be determined by seeing confirmation by 2⁄3+1 of the block producers. In the diagram below, block B has been confirmed by C and A which represents 2⁄3+1 confirmation and therefore we can infer that no other chains could possibly be longer if 2⁄3 of our producers are honest. <center>  </center> Note that this “rule” is similar to the 6-block confirmation “rule” for Bitcoin. Some smart individuals can contrive a sequence of events where two nodes could end up on different last irreversible blocks. This edge case requires an attacker to have total control of communication delay and to utilize that control not once, but twice, minutes apart. If this were to happen, then the long-term rule of longest chain still applies. We estimate the odds of such an attack to be close enough to 0 and the economic consequences to be so insignificant that it isn’t worth worrying about. ## Lack of Quorum of Producers In the unlikely event that there is no clear quorum of producers, it is possible for the minority to continue producing blocks. In these blocks stakeholders can include transactions that change their votes. These votes can then select a new set of producers and restore block production participation to 100%. Once this happens the minority chain will eventually overtake all other chains operating with less than 100% participation. During this process all observers will have knowledge that the network state is in flux until a chain emerges with 67% participation. Those who choose to transact under these conditions take risks similar to those who choose to accept less than 6 confirmations. They do so with the knowledge that there is some small probability that consensus may ultimately settle on a different fork. In practice this situation is far safer than accepting blocks with less than 3 Bitcoin confirmations. ## Corruption of Majority of Producers If the majority of producers become corrupt then they can produce an unlimited number of forks, each of which will appear to be advancing with 2⁄3 majority confirmation. In this case the last irreversible block algorithm reverts to longest chain algorithm. The longest chain will be the one approved by the largest-majority which will be decided by the minority of remaining honest nodes. This kind of behavior would not last long because the stakeholders would eventually vote to replace these producers. <center>  </center> ## Transactions as Proof of Stake (TaPoS) When users sign a transaction they do so under a certain assumption about the state of the blockchain. This assumption is based upon their perception of recent blocks. If the consensus on the longest chain changes then it could potentially invalidate the assumptions the signer had when they consented to the transaction. With TaPoS all transactions include a hash of a recent block and are considered invalid if that block does not exist in the chain history. Anyone who signs a transaction while on an orphaned fork will find the transaction invalid and unable to migrate to the main fork. A side effect of this process is security against long-range attacks that attempt to generate alternative chains. Individual stakeholders directly confirm the blockchain every time they transact. Over time all blocks are confirmed by all stakeholders and this is something that cannot be replicated in a forged chain. ## Deterministic Producer Shuffling In all of the examples we showed a round-robin scheduling of block producers. In reality set of block producers is shuffled every N blocks where N is the number of producers. This randomization ensures that block producer B doesn’t always ignore block producer A and that anytime there are multiple forks of identical producer counts that ties are eventually broken. ## Conclusion Delegated Proof of Stake is robust under every conceivable natural network disruption and even secure in the face of corruption of a large minority of producers. Unlike some competing algorithms, DPOS can continue to function when a majority of producers fail. During this process the community can vote to replace the failed producers until it can resume 100% participation. I know of no other consensus algorithm that is robust under such a high and varied failure conditions. Ultimately DPOS gains significant security from the algorithms chosen to select the block producers and verify that the nodes are of high quality and unique individuals. Using the process of approval voting ensures that even someone with 50% of the active voting power is unable to select even a single producer on their own. DPOS is designed to optimize performance of the nominal condition of 100% participation of honest nodes with robust network connections. This gives DPOS the power to confirm transactions with 99.9% certainty in an average of just 1.5 seconds while degrading in a graceful, detectable manner that is trivial to recover from. Other consensus algorithms design for a nominal condition of dishonest nodes with poor network conditions. The end result of alternative designs is networks that have slower performance, higher latency, high communication overhead, and completely halt in the event 33% of nodes fail. With 3 years of successful operation on BitShares and a year of Steem we have experienced all manner of network conditions and software bugs. DPOS has successfully navigated this environment and demonstrated its ability to maintained consensus while processing more transactions than any other blockchain.
author | dantheman |
---|---|
permlink | dpos-consensus-algorithm-this-missing-white-paper |
category | dpos |
json_metadata | {"tags":["dpos","eos","steem","bitshares"],"image":["https://steemitimages.com/DQmRR65U9ZYyMTVqtxRV6vu7AXj6GEouURjpEaoeSkHeHM8/image.png","https://steemitimages.com/DQmUnFg35XqTednrwUiZo7AHX7SHQ7hAUTytA8BLwk64EN7/image.png","https://steemitimages.com/DQmaXit43FxdSQrn7PshKtJcnTY5SYJb1vSArf26ys34NDF/image.png","https://steemitimages.com/DQmXsgRLQhmTVxjte48va1Qe6QePVzXUtmXRS8pjGPzUqGg/image.png","https://steemitimages.com/DQmb4UaGGR8nNW5pmtoDE7Z9pvMd1LnKSpdi3utHUWeyfQZ/image.png","https://steemitimages.com/DQmXstNcMtg5H6o1a955LZNGwbiCaygQnWzK81yeR8Uirvz/image.png","https://steemitimages.com/DQmWjbpfju5vj1EGBtfLKSGcM4CpHmYppgB9cfev2dFLtyF/image.png","https://steemitimages.com/DQmZvNhkNbLLmvFQZEDhiXrCkmdEHm4q5tmL5Jo7ngJFWJG/image.png"],"app":"steemit/0.1","format":"markdown","links":["https://bitshares.org/technology/delegated-proof-of-stake-consensus/"]} |
created | 2017-05-29 01:32:42 |
last_update | 2017-05-29 14:49:27 |
depth | 0 |
children | 75 |
last_payout | 2017-06-05 01:32: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 | 11,053 |
author_reputation | 240,292,002,602,347 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 3,906,793 |
net_rshares | 52,760,080,160,991 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 9,984,978,195,341 | 100% | ||
berkah | 0 | 177,782,420,078 | 100% | ||
modprobe | 0 | 1,070,916,659,805 | 100% | ||
riverhead | 0 | 2,076,930,472,584 | 30% | ||
wackou | 0 | 524,531,665,121 | 10% | ||
samupaha | 0 | 525,216,423,210 | 100% | ||
troglodactyl | 0 | 563,268,737,598 | 100% | ||
fuzzyvest | 0 | 2,063,267,844,002 | 43% | ||
sandra | 0 | 22,867,109,475 | 70% | ||
ihashfury | 0 | 8,930,474,948 | 48.3% | ||
rossco99 | 0 | 898,698,391,275 | 100% | ||
liondani | 0 | 213,230,638,503 | 100% | ||
boy | 0 | 2,581,802,789 | 100% | ||
xeroc | 0 | 1,077,361,795,412 | 100% | ||
steem-id | 0 | 287,985,721,848 | 100% | ||
bue-witness | 0 | 3,148,072,497 | 100% | ||
testz | 0 | 193,326,615,418 | 100% | ||
bunny | 0 | 451,854,256 | 100% | ||
ajvest | 0 | 345,502,248,403 | 100% | ||
bue | 0 | 52,137,527,979 | 100% | ||
mini | 0 | 1,379,930,738 | 100% | ||
moon | 0 | 175,448,853 | 100% | ||
lovejoy | 0 | 65,909,764,762 | 100% | ||
jason | 0 | 23,462,294,598 | 48.3% | ||
masteryoda | 0 | 884,591,638 | 1% | ||
bonapartist | 0 | 106,338,547,646 | 100% | ||
steempower | 0 | 1,052,983,906,904 | 100% | ||
pfunk | 0 | 413,444,929,522 | 25% | ||
pairmike | 0 | 84,358,195,082 | 100% | ||
cass | 0 | 1,803,943,065,836 | 100% | ||
pheonike | 0 | 3,245,646,616 | 0.06% | ||
healthcare | 0 | 514,258,184 | 100% | ||
daniel.pan | 0 | 813,568,504 | 100% | ||
steemrollin | 0 | 140,551,961,581 | 50% | ||
konelectric | 0 | 38,942,587,825 | 100% | ||
elmato | 0 | 0 | 100% | ||
bangking | 0 | 26,023,204,611 | 100% | ||
fractalnode | 0 | 25,456,086,155 | 100% | ||
ash | 0 | 111,034,547,713 | 100% | ||
chitty | 0 | 208,331,709,065 | 100% | ||
jabberw0cky | 0 | 6,576,582,606 | 100% | ||
relativelyboston | 0 | 499,268,275 | 100% | ||
pnc | 0 | 82,759,206,768 | 100% | ||
helen.tan | 0 | 235,195,542 | 100% | ||
nikolai | 0 | 105,302,661,378 | 100% | ||
piedpiper | 0 | 16,968,950,588 | 100% | ||
noaommerrr | 0 | 0 | 100% | ||
noisy | 0 | 292,615,625,609 | 100% | ||
chryspano | 0 | 286,831,880,574 | 100% | ||
ppitonak | 0 | 2,540,899,228 | 100% | ||
carlos-cabeza | 0 | 1,676,904,890 | 100% | ||
jademont | 0 | 31,534,795,486 | 100% | ||
bleepcoin | 0 | 184,966,965,045 | 100% | ||
hipster | 0 | 110,105,937,116 | 20% | ||
teamsteem | 0 | 92,184,512,113 | 1% | ||
educatedwarrior | 0 | 0 | 100% | ||
pal | 0 | 366,443,845,557 | 100% | ||
acidyo | 0 | 421,611,146,457 | 20% | ||
dan-atstarlite | 0 | 142,968,190,736 | 100% | ||
tmendieta | 0 | 22,873,946,186 | 100% | ||
klye | 0 | 160,583,268,332 | 100% | ||
kevinwong | 0 | 298,801,955,296 | 25% | ||
murh | 0 | 0 | 0.7% | ||
blakemiles84 | 0 | 135,032,309,664 | 100% | ||
frabrunelle | 0 | 0 | 100% | ||
theshell | 0 | 90,987,283,997 | 100% | ||
cm-steem | 0 | 114,766,483,870 | 100% | ||
compumatrix | 0 | 1,655,340,943 | 100% | ||
applecrisp | 0 | 213,533,333 | 100% | ||
rok-sivante | 0 | 283,280,524,647 | 33% | ||
the-alien | 0 | 140,995,796,913 | 100% | ||
samether | 0 | 1,584,133,305 | 20% | ||
dahaz159 | 0 | 148,273,780 | 1% | ||
everythink | 0 | 17,274,421,997 | 100% | ||
facer | 0 | 18,202,469,057 | 100% | ||
beervangeer | 0 | 26,995,182,159 | 100% | ||
olili | 0 | 51,223,096 | 15% | ||
schro | 0 | 0 | 0% | ||
luis-a-rivas | 0 | 2,846,761,537 | 100% | ||
michaelx | 0 | 43,647,367,526 | 100% | ||
proglobyte | 0 | 1,723,560,961 | 100% | ||
mark-waser | 0 | 50,744,124,652 | 100% | ||
sean-king | 0 | 1,595,247,661,572 | 100% | ||
albertogm | 0 | 32,611,621,952 | 100% | ||
christoryan | 0 | 337,402,418 | 2% | ||
andrew-bernbeck | 0 | 11,474,285,520 | 100% | ||
crok | 0 | 5,110,460,385 | 100% | ||
lukestokes | 0 | 533,737,002,483 | 100% | ||
tyler-fletcher | 0 | 6,451,912,456 | 70% | ||
mctiller | 0 | 6,023,654,179 | 40% | ||
jakevanderark | 0 | 116,784,514 | 100% | ||
superfreek | 0 | 3,094,557,604 | 100% | ||
pmartynov | 0 | 184,171,298,804 | 100% | ||
isteemit | 0 | 49,439,147,417 | 70% | ||
skapaneas | 0 | 28,958,241,810 | 70% | ||
norbu | 0 | 48,600,318,343 | 90% | ||
spikykevin | 0 | 281,330,451 | 100% | ||
michaellamden68 | 0 | 2,666,211,930 | 100% | ||
britvr | 0 | 11,654,453,730 | 100% | ||
booja | 0 | 104,277,869,372 | 100% | ||
roelandp | 0 | 911,984,194,830 | 100% | ||
kakradetome | 0 | 10,482,892,207 | 100% | ||
robrigo | 0 | 235,727,721,492 | 100% | ||
cultura.bitcoin | 0 | 4,670,143,386 | 100% | ||
cryptochannel | 0 | 566,370,400 | 20% | ||
picokernel | 0 | 228,453,914,127 | 100% | ||
busser | 0 | 17,519,598,990 | 100% | ||
on0tole | 0 | 16,089,343,007 | 70% | ||
anasya | 0 | 2,034,675,607 | 70% | ||
ausbitbank | 0 | 334,929,100,962 | 8% | ||
vl248 | 0 | 13,243,512,764 | 70% | ||
vortac | 0 | 782,340,791,045 | 100% | ||
losos | 0 | 936,622,832 | 100% | ||
sveokla | 0 | 6,951,240,016 | 70% | ||
marcgodard | 0 | 2,462,820,586 | 100% | ||
marinabogumil | 0 | 12,157,397,581 | 70% | ||
fulltimegeek | 0 | 2,745,201,392,828 | 75% | ||
cloh76 | 0 | 13,695,647,381 | 100% | ||
asim | 0 | 5,864,743,540 | 100% | ||
jesta | 0 | 332,881,219,773 | 100% | ||
incomemonthly | 0 | 11,841,947,319 | 100% | ||
bobbylee | 0 | 286,685,250,925 | 100% | ||
dwinblood | 0 | 103,265,455,501 | 100% | ||
igster | 0 | 37,500,644,777 | 100% | ||
billylindeman | 0 | 0 | 100% | ||
transisto | 0 | 1,475,895,947,169 | 100% | ||
meesterboom | 0 | 3,135,249,322 | 1% | ||
raymondspeaks | 0 | 20,105,216,053 | 100% | ||
kell234 | 0 | 2,823,850,049 | 70% | ||
hyiparena | 0 | 6,439,186,808 | 70% | ||
krystle | 0 | 3,328,015,150 | 8% | ||
inertia | 0 | 287,574,856,177 | 100% | ||
kendewitt | 0 | 34,085,040,304 | 50% | ||
arcange | 0 | 43,359,955,370 | 50% | ||
demotruk | 0 | 950,429,661,394 | 100% | ||
fiveboringgames | 0 | 1,492,892,295 | 0.3% | ||
konti | 0 | 7,336,490,435 | 70% | ||
phenom | 0 | 36,684,679,153 | 100% | ||
blueorgy | 0 | 53,783,861,345 | 100% | ||
oululahti | 0 | 6,060,279,319 | 100% | ||
jens84 | 0 | 43,937,330,512 | 80% | ||
heimindanger | 0 | 21,304,991,947 | 100% | ||
bitcoiner | 0 | 111,835,041,977 | 100% | ||
tarindel | 0 | 3,175,503,259 | 100% | ||
bola | 0 | 3,512,171,763 | 10% | ||
deanliu | 0 | 536,894,003,178 | 100% | ||
sharker | 0 | 3,322,385,865 | 70% | ||
tokyodude | 0 | 8,402,855,016 | 100% | ||
atsobanakis | 0 | 90,464,695 | 100% | ||
zaebars | 0 | 81,999,877,809 | 70% | ||
sokoloffa | 0 | 0 | 100% | ||
arcurus | 0 | 36,568,809,414 | 26% | ||
arconite | 0 | 3,810,111,052 | 100% | ||
crypto.owl | 0 | 1,200,790,136 | 70% | ||
marius19 | 0 | 53,611,536,550 | 100% | ||
sompitonov | 0 | 5,753,870,475 | 100% | ||
bbrewer | 0 | 295,497,346 | 100% | ||
daynewright | 0 | 114,094,239 | 100% | ||
fatboy | 0 | 44,052,288,867 | 100% | ||
samu-paha | 0 | 196,268,574,774 | 100% | ||
salamanca1987ar | 0 | 191,421,267 | 90% | ||
bkkshadow | 0 | 10,304,139,431 | 49% | ||
remlaps | 0 | 12,150,755,634 | 100% | ||
steemuwe | 0 | 3,597,449,597 | 100% | ||
smailer | 0 | 74,882,577,530 | 70% | ||
youngkim | 0 | 16,842,270,167 | 80% | ||
tommyhansen | 0 | 77,105,576,827 | 100% | ||
alexpmorris | 0 | 358,064,803 | 1% | ||
dmilash | 0 | 23,092,253,577 | 70% | ||
drbec | 0 | 753,192,832 | 100% | ||
zver | 0 | 0 | 100% | ||
ap2002 | 0 | 66,710,811 | 100% | ||
dirty.hera | 0 | 872,741,645 | 100% | ||
gomeravibz | 0 | 43,796,699,938 | 80% | ||
proglobyte-m1 | 0 | 1,664,012,572 | 100% | ||
craigslist | 0 | 347,971,558 | 100% | ||
dumar022 | 0 | 43,652,523,192 | 100% | ||
tingaling | 0 | 1,678,074,521 | 100% | ||
always1success | 0 | 8,929,094,431 | 70% | ||
timcliff | 0 | 198,823,915,143 | 100% | ||
letc | 0 | 1,013,913,749 | 50% | ||
laoyao | 0 | 33,148,913,545 | 100% | ||
myfirst | 0 | 9,789,649,032 | 100% | ||
somebody | 0 | 334,505,103,526 | 100% | ||
brendio | 0 | 117,583,252,547 | 80% | ||
kview | 0 | 0 | 0% | ||
mama-steem | 0 | 2,201,787,884 | 70% | ||
aleksandraz | 0 | 33,168,655,763 | 100% | ||
midnightoil | 0 | 50,790,128,253 | 100% | ||
ullikume | 0 | 8,350,586,439 | 100% | ||
elena000 | 0 | 192,825,048 | 100% | ||
r0achtheunsavory | 0 | 1,940,550,195 | 100% | ||
ssm1810 | 0 | 518,501,388,035 | 100% | ||
tommycoin | 0 | 50,748,357,195 | 100% | ||
kurtbeil | 0 | 131,877,215,130 | 100% | ||
uuuhha | 0 | 18,283,552,097 | 70% | ||
romancs | 0 | 4,518,307,514 | 70% | ||
ipumba | 0 | 4,902,719,032 | 100% | ||
riosparada | 0 | 42,306,909,335 | 70% | ||
fishingvideos | 0 | 6,447,738,856 | 100% | ||
oflyhigh | 0 | 37,951,970,659 | 100% | ||
erikkartmen | 0 | 92,617,386 | 100% | ||
krishtopa | 0 | 14,945,934,227 | 70% | ||
juliebush | 0 | 64,320,501 | 100% | ||
villainblack | 0 | 1,681,717,221 | 70% | ||
cmorton | 0 | 12,666,883,176 | 100% | ||
madscientistx13 | 0 | 0 | 100% | ||
bhavnapatel68 | 0 | 38,520,758,301 | 100% | ||
bledarus | 0 | 592,952,627 | 100% | ||
zentat | 0 | 3,524,031,309 | 100% | ||
rubenalexander | 0 | 23,576,769,195 | 100% | ||
chinadaily | 0 | 30,545,077,363 | 100% | ||
helene | 0 | 40,712,541,373 | 100% | ||
michelnilles | 0 | 1,231,055,407 | 100% | ||
virtualgrowth | 0 | 0 | 0% | ||
wakeupjohnny | 0 | 22,038,128,122 | 100% | ||
gammagooblin | 0 | 6,640,166,279 | 100% | ||
lamech-m | 0 | 99,781,183 | 1% | ||
johnnyyash | 0 | 28,780,458,888 | 100% | ||
neptun | 0 | 3,866,710,482 | 100% | ||
skylineking88 | 0 | 629,352,812 | 100% | ||
cryptomancer | 0 | 154,666,974,435 | 60% | ||
telos | 0 | 34,269,479,892 | 100% | ||
mada | 0 | 35,640,682,565 | 100% | ||
ethansteem | 0 | 100,540,634,834 | 100% | ||
sweetsssj | 0 | 223,419,597,544 | 80% | ||
andrewawerdna | 0 | 15,460,982,527 | 100% | ||
leahmchenry | 0 | 549,433,574 | 100% | ||
gaio | 0 | 0 | 100% | ||
nomadnessie | 0 | 7,786,866,499 | 100% | ||
leno4ek | 0 | 2,304,727,170 | 70% | ||
sature | 0 | 2,395,475,167 | 100% | ||
rossomahar | 0 | 58,019,190 | 100% | ||
datajunky | 0 | 0 | 100% | ||
steembriefing | 0 | 2,021,298,976 | 100% | ||
etcmike | 0 | 302,826,761,173 | 100% | ||
nulliusinverba | 0 | 5,943,578,700 | 100% | ||
barrydutton | 0 | 110,526,659,997 | 100% | ||
jlufer | 0 | 15,422,435,440 | 100% | ||
edges | 0 | 1,806,355,949 | 100% | ||
ashaman | 0 | 0 | 100% | ||
richardcrill | 0 | 44,385,724,564 | 100% | ||
cryptohazard | 0 | 2,146,948,852 | 100% | ||
nadin3 | 0 | 8,499,511,007 | 70% | ||
xanoxt | 0 | 34,210,198,584 | 70% | ||
davidjkelley | 0 | 2,498,399,399 | 100% | ||
aggroed | 0 | 20,799,701,984 | 100% | ||
victoriart | 0 | 6,666,775,000 | 70% | ||
tibonova | 0 | 13,639,992,967 | 100% | ||
digital-wisdom | 0 | 21,509,054,030 | 100% | ||
ethical-ai | 0 | 6,112,172,351 | 100% | ||
ovaki | 0 | 0 | 100% | ||
matthewtiii | 0 | 182,944,753 | 1% | ||
jwaser | 0 | 8,678,120,248 | 100% | ||
rileyechard | 0 | 994,823,694 | 100% | ||
tatianka | 0 | 3,076,290,225 | 70% | ||
kralizec | 0 | 7,211,388,941 | 70% | ||
necrus | 0 | 153,634,131 | 100% | ||
kyusho | 0 | 25,910,461,004 | 50% | ||
rada | 0 | 101,655,953 | 100% | ||
the-ego-is-you | 0 | 5,665,335,590 | 100% | ||
deaddy | 0 | 0 | 36% | ||
peteyates | 0 | 0 | 100% | ||
totosky | 0 | 1,521,701,057 | 100% | ||
dubi | 0 | 75,717,164,960 | 100% | ||
pjo | 0 | 1,872,071,510 | 100% | ||
elena-singer | 0 | 6,890,364,330 | 70% | ||
bwaser | 0 | 3,063,011,269 | 100% | ||
renzoarg | 0 | 43,884,261,411 | 100% | ||
tracemayer | 0 | 53,572,670,082 | 100% | ||
burnin | 0 | 14,478,438,009 | 70% | ||
bitcoinparadise | 0 | 2,716,074,668 | 100% | ||
anton333 | 0 | 8,134,754,088 | 70% | ||
jeanviete | 0 | 2,237,528,814 | 100% | ||
bontonstory | 0 | 0 | 100% | ||
freebornangel | 0 | 2,004,478,999 | 10% | ||
ellepdub | 0 | 9,036,329,321 | 100% | ||
pickoum | 0 | 25,790,114,483 | 100% | ||
arama | 0 | 1,516,167,791,037 | 100% | ||
ekaterinka | 0 | 2,265,932,614 | 70% | ||
herpetologyguy | 0 | 88,467,326,259 | 100% | ||
bestofreddit | 0 | 196,893,503 | 0.27% | ||
ocrdu | 0 | 7,084,127,867 | 50% | ||
worldtraveler | 0 | 4,859,055,174 | 100% | ||
develcuy | 0 | 5,700,406,094 | 70% | ||
lajulius | 0 | 8,854,930,784 | 100% | ||
morgan.waser | 0 | 5,539,042,778 | 100% | ||
borishaifa | 0 | 11,238,191,677 | 70% | ||
thegame | 0 | 96,476,875 | 0.1% | ||
ssekulji | 0 | 11,226,534,024 | 100% | ||
old-joe-hill | 0 | 1,278,919,130 | 100% | ||
steembets | 0 | 117,154,505 | 0.1% | ||
luzcypher | 0 | 58,728,113,865 | 100% | ||
strong-ai | 0 | 6,086,790,824 | 100% | ||
steemitawards | 0 | 1,215,303,571 | 100% | ||
steemint | 0 | 1,996,737,868 | 100% | ||
siniceku | 0 | 1,640,889,816 | 100% | ||
bosjaya | 0 | 973,954,413 | 100% | ||
dhrms | 0 | 2,277,350,990 | 100% | ||
htyfn | 0 | 2,712,623,594 | 70% | ||
anasz | 0 | 21,625,086,311 | 100% | ||
rusteemitblog | 0 | 11,688,997,682 | 70% | ||
ninkhisibir | 0 | 5,252,535,906 | 100% | ||
birds90 | 0 | 8,947,401,111 | 100% | ||
projectnewbie | 0 | 2,903,946,000 | 20% | ||
dianargenti | 0 | 923,929,120 | 10% | ||
apolymask | 0 | 28,139,593,165 | 100% | ||
matteopoole | 0 | 1,779,522,673 | 100% | ||
orenshani7 | 0 | 6,963,117,819 | 70% | ||
therajmahal | 0 | 2,385,316,665 | 70% | ||
jlsuarez | 0 | 0 | 100% | ||
simonjay | 0 | 25,729,600,003 | 100% | ||
marel | 0 | 1,915,357,215 | 70% | ||
dgiors | 0 | 52,218,664,848 | 100% | ||
steemlift | 0 | 4,104,411,658 | 70% | ||
groundbreaker | 0 | 420,715,793 | 95% | ||
marialin | 0 | 6,625,400,821 | 100% | ||
tomino | 0 | 33,295,100,233 | 100% | ||
curiesea | 0 | 0 | 100% | ||
sanghkaang | 0 | 293,334,971,552 | 100% | ||
stray | 0 | 11,180,172,420 | 100% | ||
very | 0 | 25,696,912,972 | 100% | ||
thejohalfiles | 0 | 3,455,106,377,037 | 30% | ||
dongu | 0 | 1,942,839,338 | 100% | ||
mokluc | 0 | 1,273,160,291 | 100% | ||
ejhaasteem | 0 | 6,497,463,762 | 100% | ||
max-max | 0 | 4,487,020,496 | 70% | ||
sstefan | 0 | 10,441,234,421 | 50% | ||
garvofe | 0 | 4,737,263,320 | 30% | ||
jmehta | 0 | 377,563,547 | 100% | ||
steemland.com | 0 | 98,226,195 | 0.1% | ||
selwi | 0 | 660,277,036 | 100% | ||
bosrad | 0 | 745,675,686 | 100% | ||
steemvoter | 0 | 103,372,814,950 | 100% | ||
trans-juanmi | 0 | 3,710,204,319 | 60% | ||
muhtadiaremi | 0 | 1,882,132,352 | 100% | ||
gutzofter | 0 | 67,326,542,055 | 100% | ||
gacherih | 0 | 1,584,128,115 | 100% | ||
goldsteem | 0 | 22,770,246,984 | 100% | ||
steemprentice | 0 | 1,192,653,633 | 0.3% | ||
blackchen | 0 | 25,251,571,060 | 100% | ||
technoprogressiv | 0 | 5,839,716,617 | 100% | ||
omarrium | 0 | 285,377,092 | 1% | ||
reisman | 0 | 2,333,986,000 | 20% | ||
damiendecoster | 0 | 973,354,741 | 100% | ||
detol | 0 | 2,048,572,159 | 70% | ||
finder | 0 | 711,784,133 | 100% | ||
vcelier | 0 | 158,858,241,996 | 20% | ||
gildar | 0 | 4,566,889,466 | 70% | ||
cryptofreedom | 0 | 15,800,972,753 | 100% | ||
steemcollator | 0 | 7,131,216,481 | 100% | ||
soushi888 | 0 | 10,202,295,258 | 100% | ||
juliosalas | 0 | 569,627,334 | 60% | ||
nickit | 0 | 5,441,396,404 | 100% | ||
tamersameeh | 0 | 129,087,720 | 20% | ||
magyarul | 0 | 291,466,411 | 100% | ||
mathworksheets | 0 | 1,593,557,460 | 100% | ||
dragon40 | 0 | 2,596,403,098 | 100% | ||
destbest | 0 | 173,361,327,755 | 100% | ||
joelaldrich | 0 | 0 | 100% | ||
darth-azrael | 0 | 3,838,021,599 | 42% | ||
luchibaguchi | 0 | 970,502,805 | 100% | ||
kaqing | 0 | 0 | 100% | ||
kostaslou | 0 | 1,866,513,075 | 70% | ||
blackbunny | 0 | 4,578,675,695 | 100% | ||
lukinsawyer | 0 | 118,040,160 | 1% | ||
lifelovelifting | 0 | 1,260,877,842 | 100% | ||
davidcurwain | 0 | 287,914,262 | 100% | ||
free2play | 0 | 1,044,123,176 | 100% | ||
fisteganos | 0 | 870,751,645 | 4% | ||
fbechstein | 0 | 9,594,756,970 | 70% | ||
elgeko | 0 | 72,034,473,647 | 100% | ||
leejiman | 0 | 0 | 100% | ||
blockchained | 0 | 15,078,301,981 | 100% | ||
ogochukwu | 0 | 622,338,691 | 1% | ||
tonylondon | 0 | 53,908,221 | 1% | ||
paolobeneforti | 0 | 17,342,089,183 | 100% | ||
lingfei | 0 | 5,231,674,992 | 100% | ||
eusebio | 0 | 402,957,769 | 100% | ||
sodom | 0 | 376,489,635 | 100% | ||
ramtech | 0 | 1,450,446,382 | 100% | ||
zikri | 0 | 0 | 100% | ||
notoriousdjp | 0 | 0 | 0% | ||
justinashby | 0 | 400,025,534 | 20% | ||
zephyraijunzo | 0 | 23,712,025,153 | 100% | ||
torkot | 0 | 2,512,914,485 | 100% | ||
verethragna | 0 | 486,818,258 | 100% | ||
robertdurst10 | 0 | 4,947,236,917 | 100% | ||
kersillian19 | 0 | 0 | 100% | ||
sebhofmann | 0 | 23,150,678,124 | 100% | ||
evildeathcore | 0 | 837,274,371 | 20% | ||
photono | 0 | 5,090,883,618 | 100% | ||
teammo | 0 | 36,065,453,449 | 100% | ||
ramires | 0 | 1,199,901,498 | 100% | ||
funkit | 0 | 3,068,355,665 | 100% | ||
prettykitten | 0 | 1,704,911,811 | 100% | ||
munawar1 | 0 | 324,365,040 | 100% | ||
jamesc1 | 0 | 1,602,245,757,230 | 38% | ||
breakingtonight | 0 | 4,439,883,595 | 100% | ||
grateful | 0 | 0 | 100% | ||
worldclassplayer | 0 | 83,986,277,515 | 100% | ||
laodr | 0 | 2,214,090,324 | 100% | ||
leviarcoin | 0 | 1,169,189,703 | 50% | ||
pawnuts | 0 | 6,818,603,500 | 100% | ||
nba05 | 0 | 256,374,609 | 100% | ||
andrianna | 0 | 114,566,198 | 100% | ||
cryptocoinupdate | 0 | 766,734,285 | 100% | ||
singa | 0 | 1,314,194,748 | 70% | ||
sophye2 | 0 | 0 | 100% | ||
sepehrkia | 0 | 0 | 100% | ||
jocra | 0 | 0 | 0% | ||
elevator09 | 0 | 1,152,240,292 | 100% | ||
avilsd | 0 | 15,734,690,361 | 100% | ||
awesomianist | 0 | 1,629,644,695 | 100% | ||
bitcoinsig | 0 | 67,131,175,047 | 100% | ||
looftee | 0 | 4,193,109,286 | 0% | ||
aismor | 0 | 573,697,738 | 100% | ||
ienrikex | 0 | 999,806,106 | 70% | ||
the50 | 0 | 3,331,649,142 | 100% | ||
keevesaidore | 0 | 1,580,042,130 | 100% | ||
therealdoapsauce | 0 | 1,121,844,521 | 100% | ||
shonnyc | 0 | 5,329,834,559 | 100% | ||
newmedia | 0 | 1,193,421,254 | 100% | ||
saifulbahri | 0 | 1,098,979,187 | 100% | ||
elfictron | 0 | 0 | 0% | ||
sirryg | 0 | 1,193,435,096 | 100% | ||
blackvapor | 0 | 2,957,211,780 | 100% | ||
ryansteemit | 0 | 1,284,526,197 | 100% | ||
stimialiti | 0 | 1,193,977,934 | 100% | ||
bethalea | 0 | 1,329,132,646 | 100% | ||
synapse | 0 | 1,577,585,184 | 100% | ||
ghostgod | 0 | 127,898,016 | 10% | ||
civis-mundi | 0 | 385,145,368 | 100% | ||
zaragast | 0 | 1,125,103,258 | 100% | ||
bloom | 0 | 2,229,439,253 | 100% | ||
vegolino | 0 | 1,193,358,054 | 100% | ||
tinanikolovski | 0 | 1,193,355,198 | 100% | ||
coinhub | 0 | 873,606,601 | 100% | ||
billyjohnsonart | 0 | 1,140,347,193 | 100% | ||
martin007 | 0 | 1,194,881,400 | 100% | ||
foways | 0 | 464,989,190 | 100% | ||
starflyer-9000 | 0 | 1,238,286,192 | 100% | ||
clodoweg | 0 | 1,066,796,308 | 100% | ||
akrid | 0 | 1,369,225,040 | 100% | ||
deobrands | 0 | 0 | 100% | ||
leehohyeon | 0 | 1,515,370,239 | 100% | ||
manuel78 | 0 | 2,022,096,309 | 100% | ||
cryptodan | 0 | 4,788,869,764 | 100% | ||
anubisthegaylord | 0 | 589,378,079 | 100% | ||
marquix | 0 | 1,698,111,664 | 100% | ||
equine.love | 0 | 1,452,174,185 | 100% | ||
texas-steemem | 0 | 1,280,992,996 | 100% | ||
steemlancer | 0 | 1,280,848,514 | 100% | ||
irf1 | 0 | 6,305,381,188 | 100% | ||
bobskibob | 0 | 1,225,022,484 | 100% | ||
jordanmccraw | 0 | 1,554,419,142 | 100% | ||
skye1 | 0 | 979,449,817 | 70% | ||
svinsent | 0 | 549,790,016 | 100% | ||
marioworld | 0 | 1,515,368,428 | 100% | ||
emilniz | 0 | 363,695,848 | 100% | ||
frankintaiwan | 0 | 1,453,589,200 | 100% | ||
hkshwa | 0 | 1,515,368,076 | 100% | ||
stadsmanneke | 0 | 1,536,762,454 | 100% | ||
user786 | 0 | 214,805,143 | 100% | ||
bp423 | 0 | 1,460,622,722 | 100% | ||
babbevdan | 0 | 0 | 100% | ||
wthomas | 0 | 17,209,812,930 | 100% | ||
cro | 0 | 0 | 0% | ||
onequality | 0 | 60,615,914 | 4% | ||
schro.one | 0 | 2,390,051,980 | 100% | ||
budimir | 0 | 212,170,172 | 100% | ||
omwith | 0 | 1,628,862,560 | 100% | ||
felipezarza268 | 0 | 1,303,223,676 | 100% | ||
cptnsolo | 0 | 0 | 100% | ||
retailtrader | 0 | 1,272,915,670 | 100% | ||
klint | 0 | 1,303,223,156 | 100% | ||
steef | 0 | 1,515,365,248 | 100% | ||
jubedube | 0 | 363,687,569 | 100% | ||
mieftha | 0 | 303,075,032 | 100% | ||
steem.engine | 0 | 1,515,375,024 | 100% | ||
jungly | 0 | 0 | 100% | ||
markcampbell | 0 | 787,989,458 | 100% | ||
mys | 0 | 1,515,364,286 | 100% | ||
spliffmacgyver | 0 | 1,515,364,246 | 100% | ||
a12a | 0 | 0 | 100% | ||
stm-guicho | 0 | 1,091,062,227 | 100% | ||
kodaxx | 0 | 0 | 100% | ||
krosty | 0 | 212,150,938 | 65% | ||
dragonblue | 0 | 0 | 100% | ||
todstikles | 0 | 1,515,362,440 | 100% | ||
afoquinn | 0 | 1,485,054,612 | 100% | ||
stefc | 0 | 0 | 100% | ||
kysee | 0 | 756,430,682 | 100% | ||
wvm | 0 | 0 | 100% | ||
cyberblock | 0 | 605,143,914 | 100% | ||
braveheart22 | 0 | 0 | 100% | ||
masize | 0 | 0 | 100% | ||
greatgama | 0 | 0 | 100% | ||
slavix | 0 | 0 | 100% | ||
amristeem | 0 | 0 | 100% | ||
balbina | 0 | 0 | 100% | ||
parthpatel | 0 | 0 | 100% | ||
duckmast3r | 0 | 0 | 0.32% | ||
zapata42 | 0 | 0 | 100% | ||
gladelisa | 0 | 0 | -100% | ||
zackcovell | 0 | 0 | 100% | ||
i-am-sam | 0 | 0 | 100% | ||
b3m247 | 0 | 0 | 100% | ||
shuke0327 | 0 | 0 | 100% | ||
genemk | 0 | 0 | 100% | ||
abdelilahelkati | 0 | 0 | 100% | ||
fahrullah | 0 | 0 | 100% | ||
rizalmaulana | 0 | 0 | 63% | ||
benchfrooser | 0 | 0 | 100% | ||
muhammadikbal | 0 | 0 | 100% | ||
htinlinaung | 0 | 0 | 100% | ||
winmyatthu | 0 | 0 | 100% | ||
jaggedsoft | 0 | 0 | 100% | ||
myoko | 0 | 0 | 100% | ||
harkal | 0 | 0 | 100% | ||
technolog | 0 | 0 | 100% | ||
icostan | 0 | 0 | 100% | ||
aletna | 0 | 0 | 100% | ||
cifer | 0 | 0 | 100% | ||
eugene.chung | 0 | 0 | 100% | ||
rezacoin | 0 | 0 | 100% | ||
fraze | 0 | 0 | 100% | ||
bts-bourgeoisie | 0 | 0 | 100% | ||
analogclock | 0 | 0 | 100% | ||
bro-dil | 0 | 0 | 100% | ||
xuran | 0 | 0 | 100% | ||
yingpingzhang | 0 | 0 | 100% | ||
bingbang | 0 | 0 | 100% | ||
kabrony | 0 | 0 | 100% | ||
armagno | 0 | 0 | 100% | ||
samuelpaulsun | 0 | 0 | 100% | ||
technikhil | 0 | 0 | 100% | ||
edfalis | 0 | 0 | 100% | ||
aethermass | 0 | 0 | 100% | ||
zhangziyu | 0 | 0 | 100% | ||
alexeyqian | 0 | 0 | 100% | ||
daddig | 0 | 0 | 100% | ||
gnumarcelo | 0 | 0 | 100% | ||
andrei.laz | 0 | 0 | 100% | ||
maovader888 | 0 | 0 | 100% | ||
gennarocuofano | 0 | 0 | 100% | ||
astriker | 0 | 0 | -100% | ||
xandern96 | 0 | 0 | 100% | ||
pabel | 0 | 0 | 100% | ||
pimazzoni | 0 | 0 | 100% | ||
droinx | 0 | 0 | 100% | ||
techin | 0 | 0 | -100% | ||
zeratax | 0 | 0 | 100% | ||
codep | 0 | 0 | 100% | ||
britishknight | 0 | 0 | 100% | ||
blockpanda | 0 | 0 | 100% | ||
rahul444 | 0 | 0 | 100% | ||
yashwanthkambala | 0 | 0 | 100% | ||
tectum | 0 | 0 | 100% | ||
tripleday | 0 | 0 | 100% | ||
mdrio | 0 | 0 | 100% | ||
maxawei | 0 | 0 | 100% | ||
dusty909 | 0 | 0 | 100% | ||
balzss | 0 | 0 | 100% | ||
wohlgemutlich | 0 | 0 | 100% | ||
tukey | 0 | 0 | 100% | ||
akritrime | 0 | 0 | 100% | ||
stoney.kang | 0 | 0 | 100% | ||
ssexyryan | 0 | 0 | 100% | ||
zhendalf | 0 | 0 | 100% | ||
monetashi | 0 | 0 | 100% | ||
cryptostrength | 0 | 0 | 100% | ||
kammie | 0 | 0 | 100% | ||
ehe888 | 0 | 0 | 100% | ||
cryptoseven | 0 | 0 | 100% | ||
sschiessl | 0 | 0 | 100% | ||
wind4869 | 0 | 0 | 100% | ||
hi6068 | 0 | 0 | 100% | ||
petertag | 0 | 0 | 100% | ||
vladontheblock | 0 | 0 | 100% | ||
michael2008s | 0 | 0 | -100% | ||
steemblast.com | 0 | 0 | 0.97% | ||
camillesteemer | 0 | 0 | -100% | ||
unus | 0 | 0 | 100% | ||
pamitchel | 0 | 0 | 100% | ||
ubcweicai | 0 | 0 | 100% | ||
aliqamar | 0 | 0 | 100% | ||
yaleocean3 | 0 | 0 | 100% | ||
alukashenkov | 0 | 0 | 100% | ||
a-cmsidl | 0 | 0 | -100% | ||
gaboesquivel | 0 | 0 | 100% | ||
a-alphasteem | 0 | 0 | -100% | ||
fed.franz | 0 | 0 | 100% | ||
hirosaki.tokyo | 0 | 0 | -100% | ||
jacktechtrades | 0 | 0 | 100% | ||
maximepawlak | 0 | 0 | 100% | ||
d-machi | 0 | 0 | -100% | ||
fiveforty | 0 | 0 | 100% | ||
irtiss | 0 | 0 | 100% | ||
boseokout | 0 | 0 | 100% | ||
royzumbado | 0 | 0 | 100% |
Thanks you! I've been looking everywhere for this.
author | akrid |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t013625230z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 01:36:27 |
last_update | 2017-05-29 01:36:27 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 01:36: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 | 51 |
author_reputation | 13,705,218,706,244 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,906,869 |
net_rshares | 652,628,113 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalplayer | 0 | 652,628,113 | 100% |
Wow! This is the post! You've given me a lot of information. Thanks for sharing! You need to have a big brain to write it! Thank you!
author | andrianna |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t114629696z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 11:46:30 |
last_update | 2017-05-29 11:46:30 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 11:46: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 | 133 |
author_reputation | 866,152,310,246,893 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,919,128 |
net_rshares | 0 |
Thanks for the info. Hadn't thought about it like that.
author | antv |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170530t020633508z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-30 02:06:36 |
last_update | 2017-05-30 02:06:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-06 02:06: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 | 56 |
author_reputation | 726,537,796,361 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,942,930 |
net_rshares | 0 |
Congratulations @dantheman! Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170529) in the following category: * Pending payout - Ranked 3 with $ 850,64
author | arcange |
---|---|
permlink | re-dpos-consensus-algorithm-this-missing-white-paper-20170529t170544000z |
category | dpos |
json_metadata | "" |
created | 2017-05-30 15:05:45 |
last_update | 2017-05-30 15:05:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-06 15:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.075 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 1,146,616,139,479,238 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,960,639 |
net_rshares | 45,356,611,903 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptofunk | 0 | 3,568,818,414 | 90% | ||
opheliafu | 0 | 33,460,815,175 | 54% | ||
bottymcbotface | 0 | 2,358,433,725 | 53% | ||
darth-azrael | 0 | 4,035,323,566 | 42% | ||
eem | 0 | 118,127,732 | 62% | ||
fleur | 0 | 1,815,093,291 | 90% |
This is a great post. I can understand all of this. But I need few more information. Let's say I have 1% of tokens. 1) Am I eligible as a producer ? 2) What is the difference between me and someone has 2% tokens? 3) What's the incentive for me to participate in producing? 4) How do we store the data. I mean how do we handle the growing amount of blockchain data. Is there any kind of sharding?
author | arunoda |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170627t011620147z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-06-27 01:16:24 |
last_update | 2017-06-27 03:21:06 |
depth | 1 |
children | 1 |
last_payout | 2017-07-04 01:16:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.931 HBD |
curator_payout_value | 0.307 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 399 |
author_reputation | 4,230,692,124 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,262,589 |
net_rshares | 135,713,600,727 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arunoda | 0 | 1,171,464,332 | 100% | ||
gentlebot | 0 | 134,542,136,395 | 100% | ||
javierjmc | 0 | 0 | 100% | ||
ihsotas | 0 | 0 | 100% | ||
curiouscoluan | 0 | 0 | 100% |
I think the answer to the **question 4** may be not related to the consensus algorithm but to the actual blockchain software. I read the EOS.io docs and it seems like I might hold the 1% of the total size of the blockchain since I hold 1% of tokens. [See here for more](https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md#token-model-and-resource-usage) So, that's a kind of a sharding system to me.
author | arunoda |
---|---|
permlink | re-arunoda-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170627t074120055z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md#token-model-and-resource-usage"],"app":"steemit/0.1"} |
created | 2017-06-27 07:41:21 |
last_update | 2017-06-27 07:41:21 |
depth | 2 |
children | 0 |
last_payout | 2017-07-04 07:41: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 | 423 |
author_reputation | 4,230,692,124 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,296,411 |
net_rshares | 0 |
@dantheman congrats 4 your work ! I'd like follow each other ,and have big posts ! :)
author | braveheart22 |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170609t002157690z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["dantheman"],"app":"steemit/0.1"} |
created | 2017-06-09 00:22:06 |
last_update | 2017-06-09 00:22:06 |
depth | 1 |
children | 0 |
last_payout | 2017-06-16 00:22: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 | 85 |
author_reputation | 110,059,129,643 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,437,869 |
net_rshares | 0 |
@dantheman I appreciate your analysis and for breaking it down for us!
author | breakingtonight |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t045922297z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["dantheman"],"app":"steemit/0.1"} |
created | 2017-05-29 04:59:27 |
last_update | 2017-05-29 04:59:27 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 04:59: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 | 70 |
author_reputation | 9,279,133,778,737 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,910,685 |
net_rshares | 0 |
Check out my new blog post https://steemit.com/steemit/@carlosgarcia/cryptospace-talk-july-10th
author | carlosgarcia |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170711t024024854z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://steemit.com/steemit/@carlosgarcia/cryptospace-talk-july-10th"],"app":"steemit/0.1"} |
created | 2017-07-11 02:40:30 |
last_update | 2017-07-11 02:40:30 |
depth | 1 |
children | 0 |
last_payout | 2017-07-18 02:40: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 | 97 |
author_reputation | 1,377,972,337,769 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,057,346 |
net_rshares | 0 |
Excellent explanation of dPOS. :)
author | chhaylin |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180205t230354588z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-02-05 23:03:54 |
last_update | 2018-02-05 23:03:54 |
depth | 1 |
children | 2 |
last_payout | 2018-02-12 23:03:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.550 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 28,387,653,666,318 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,255,680 |
net_rshares | 371,627,806,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chhaylin | 0 | 371,012,269,065 | 100% | ||
jlsuarez | 0 | 0 | 100% | ||
nico1a | 0 | 0 | 0% | ||
gennarocuofano | 0 | 0 | 100% | ||
yashwanthkambala | 0 | 0 | 100% | ||
cloudguise | 0 | 615,537,122 | 100% | ||
curiouscoluan | 0 | 0 | 100% | ||
coinswipe | 0 | 0 | 100% |
Agreed. This is one of the best technical overviews on @steemit available that breaks DPOS down in simple terms with graphics and clear descriptions. If you are a learn visually or know others that do (the majority of people) and they have a hard time understanding DPOS, send them to this.
author | eosdallas |
---|---|
permlink | re-chhaylin-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180313t083127218z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["steemit"],"app":"steemit/0.1"} |
created | 2018-03-13 08:31:27 |
last_update | 2018-03-13 08:31:27 |
depth | 2 |
children | 1 |
last_payout | 2018-03-20 08:31: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 | 290 |
author_reputation | 355,857,786,056 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,090,869 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jlsuarez | 0 | 0 | 100% | ||
yashwanthkambala | 0 | 0 | 100% | ||
coinswipe | 0 | 0 | 100% | ||
qoqo | 0 | 0 | 100% |
EOS.IO software is designed to facilitate inter-blockchain communication. This is achieved by making it easy to generate proof of Action existence and proof of Action sequence. These proofs combined with an application architecture designed around Action passing enables the details of inter-blockchain communication and proof validation to be hidden from application developers, enabling high level abstractions to be presented to developers. Thanks, I also using some part of this into my article about general of Blockchain here: https://bit.ly/2yZoiC0 Please accepts!
author | growupjv |
---|---|
permlink | pwh5fa |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://bit.ly/2yZoiC0"],"app":"steemit/0.1"} |
created | 2019-08-19 08:11:33 |
last_update | 2019-08-19 08:11:33 |
depth | 3 |
children | 0 |
last_payout | 2019-08-26 08:11: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 | 572 |
author_reputation | 14,530,454,176 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,693,871 |
net_rshares | 0 |
thank you dan!
author | cifer |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20181003t133447156z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-10-03 13:34:48 |
last_update | 2018-10-03 13:34:48 |
depth | 1 |
children | 0 |
last_payout | 2018-10-10 13: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 | 14 |
author_reputation | 8,256,283,569,876 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,546,603 |
net_rshares | 0 |
Hi Dan, you mention TaPoS in the end, but do not make any mention of the cons to it. Why would you not simply build your protocol to enforce a TaPoS standard to begin with?
author | crypticorn |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170823t141043776z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-08-23 14:10:45 |
last_update | 2017-08-23 14:10:45 |
depth | 1 |
children | 0 |
last_payout | 2017-08-30 14:10: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 | 172 |
author_reputation | 206,928,994 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,641,041 |
net_rshares | 0 |
finally!!! After complaining for the lack of documentation here and the added threat of censorship since we are on a blockchain based social media, at long last we get more details.
author | cryptohazard |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t175644814z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 17:56:45 |
last_update | 2017-05-29 17:56:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 17:56: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 | 181 |
author_reputation | 17,111,780,434,071 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,929,614 |
net_rshares | 0 |
wow that is is great write up, just curious, do you have any stats on the current TX/S data for bitshares and steem?
author | cyberblock |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170603t190512573z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-06-03 19:04:33 |
last_update | 2017-06-03 19:04:33 |
depth | 1 |
children | 0 |
last_payout | 2017-06-10 19:04: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 | 116 |
author_reputation | 26,134,242,075,354 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,123,217 |
net_rshares | 574,886,637 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yonny | 0 | 574,886,637 | 100% |
author | deanliu |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t063131139z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 06:31:30 |
last_update | 2017-05-29 06:31:30 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 06:31:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.611 HBD |
curator_payout_value | 0.201 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 3,091,794,545,075,632 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,912,595 |
net_rshares | 400,999,021,594 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 400,690,296,699 | 1% | ||
badpicks | 0 | 308,724,895 | 100% | ||
xhliu | 0 | 0 | 100% |
Now I know some, and learn some on how the process made by this dpos it means all can assure of good transaction no doubts and what if? since everything was build to perform in success. afraid not of what will happen for everything is in the block chain, love it @dantheman your the man!!! Steem on!
author | dianargenti | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dantheman-2017529t212234311z | ||||||
category | dpos | ||||||
json_metadata | {"tags":"dpos","app":"esteem/1.4.4","format":"markdown+html"} | ||||||
created | 2017-05-29 12:45:42 | ||||||
last_update | 2017-05-29 12:45:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-06-05 12:45: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 | 300 | ||||||
author_reputation | 27,442,867,487,879 | ||||||
root_title | "DPOS Consensus Algorithm - The Missing White Paper" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 3,920,454 | ||||||
net_rshares | 1,478,683,470 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
digitalplayer | 0 | 638,440,546 | 100% | ||
dianargenti | 0 | 840,242,924 | 10% |
# You share so intresting and valuable information! **Thank you very much @dantheman**
author | dimarss | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-2017619t193924784z | ||||||
category | dpos | ||||||
json_metadata | {"app":"chainbb/0.2","format":"markdown+html","tags":[]} | ||||||
created | 2017-06-19 16:39:27 | ||||||
last_update | 2017-06-19 16:39:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-06-26 16:39:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.508 HBD | ||||||
curator_payout_value | 0.134 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 87 | ||||||
author_reputation | 20,872,884,109,791 | ||||||
root_title | "DPOS Consensus Algorithm - The Missing White Paper" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 5,275,110 | ||||||
net_rshares | 99,919,052,281 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptoctopus | 0 | 99,848,399,872 | 30% | ||
mmikhail | 0 | 0 | 0% | ||
ovaki | 0 | 0 | 100% | ||
redpill | 0 | 70,652,409 | 50% | ||
pugriffs | 0 | 0 | 100% | ||
darkqueen | 0 | 0 | 100% | ||
greatgama | 0 | 0 | 100% | ||
blockpanda | 0 | 0 | 100% | ||
tectum | 0 | 0 | 100% | ||
cloudguise | 0 | 0 | 100% | ||
cryptostrength | 0 | 0 | 100% | ||
curiouscoluan | 0 | 0 | 100% | ||
vhorta | 0 | 0 | 100% |
thank you.
author | ducnguyenxyz |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180504t020436842z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-05-04 02:04:39 |
last_update | 2018-05-04 02:04:39 |
depth | 1 |
children | 0 |
last_payout | 2018-05-11 02:04: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 | 10 |
author_reputation | 158,778,492 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,746,317 |
net_rshares | 0 |
This is beautiful. I wish there was functionality in steemit to create my own reference list of postings. Meanwhile I'll just post this meaningless comment as a bookmark to refer to this posting later. :)
author | educatedwarrior |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170615t231258604z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-06-15 23:12:57 |
last_update | 2017-06-15 23:12:57 |
depth | 1 |
children | 0 |
last_payout | 2017-06-22 23:12: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 | 208 |
author_reputation | 394,962,153,250 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,961,320 |
net_rshares | 0 |
We need a bookmarking feature seriously
author | eoslinks |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170828t100752618z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-08-28 10:07:57 |
last_update | 2017-08-28 10:07:57 |
depth | 1 |
children | 0 |
last_payout | 2017-09-04 10:07: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 | 39 |
author_reputation | 33,912,357,491 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,108,074 |
net_rshares | 0 |
Thanks! What about overall amount of full nodes? For example knocking down 21 computers simultaniously is much easier than several thousands of them like in DASH or other POW cryptocurrencies. BTW, what are you thoughts on HF-19 in Steem?
author | everythink |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t032251390z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 03:22:51 |
last_update | 2017-05-29 03:56:57 |
depth | 1 |
children | 2 |
last_payout | 2017-06-05 03:22:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 239 |
author_reputation | 4,677,402,812,046 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,909,043 |
net_rshares | 17,274,421,997 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
everythink | 0 | 17,274,421,997 | 100% |
There are more than 21 full nodes in steem due to runner up production and API nodes. Consensus algorithm is almost entirely independent of number of full nodes.
author | dan |
---|---|
permlink | re-everythink-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t040128840z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 04:01:30 |
last_update | 2017-05-29 04:01:30 |
depth | 2 |
children | 1 |
last_payout | 2017-06-05 04:01:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 155,470,101,136,708 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,909,709 |
net_rshares | 17,521,269,280 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
everythink | 0 | 17,274,421,997 | 100% | ||
badpicks | 0 | 246,847,283 | 100% |
And what is your estimation of full nodes count in EoS? I mean, if someone looks for witnesses on steemd.com he will see that most part of witnesses after number 50+ are inactive.
author | everythink |
---|---|
permlink | re-dan-re-everythink-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t040801933z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 04:08:03 |
last_update | 2017-05-29 04:08:03 |
depth | 3 |
children | 0 |
last_payout | 2017-06-05 04:08: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 | 179 |
author_reputation | 4,677,402,812,046 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,909,842 |
net_rshares | 0 |
Great post, thank you.
author | gktown |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t021338557z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 02:13:36 |
last_update | 2017-05-29 02:13:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 02:13: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 | 22 |
author_reputation | 10,524,219,440,936 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,907,607 |
net_rshares | 246,847,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badpicks | 0 | 246,847,283 | 100% |
Thanks for posting Dan
author | goldmatters |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t014148099z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 01:41:48 |
last_update | 2017-05-29 01:41:48 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 01:41: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 | 22 |
author_reputation | 409,743,405,777,482 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,906,986 |
net_rshares | 0 |
INTRODUCTION Watch this introduction video: https://www.youtube.com/watch?v=FEl0-zpXVyw Read this: https://coincentral.com/what-is-eos/ DAN LARIMER Learn more about Dan Larimer: https://hackernoon.com/dan-larimer-visionary-programmer-of-bitshares-steem-and-eos-7e6d94b241d7 FREQUENTLY ASKED QUESTIONS (FAQ) Comprehensive: https://www.reddit.com/r/eos/comments/88585f/the_exhaustive_eos_faq/ Shorter: https://eos.io/faq.html HOW TO BUY EOS Full Guide: https://buyingeos.com/ Using Binance/Bitfinex: https://unhashed.com/how-to-buy-cryptocurrency/eos/ Using MyEtherWallet(MEW): https://steemit.com/eos/@sandwich/contributing-to-eos-token-sale-with-myetherwallet-and-contract-inner-workings HOW TO REGISTER TOKENS AFTER BUYING (IN PERSONAL WALLET) Register: https://www.youtube.com/watch?v=V2oU8pZgV2M Verify registration: https://www.youtube.com/watch?v=K0e22jRwkDg If you have EOS in binance/bitfinex, you do not have to register them. EOS STATISTICS All Distributions: https://eosscan.io/ ERC20 Contract: https://etherscan.io/token/EOS Current Price: https://coinmarketcap.com/currencies/eos/#markets TECHNICAL Learn how Delegated Proof of Stake (DPoS) works: https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper Read the EOS Technical White Paper: https://github.com/EOSIO/Documentation/blob/TWPv2/TechnicalWhitePaper.md
author | joelaldrich |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180330t193403851z |
category | dpos |
json_metadata | {"tags":["dpos"],"image":["https://img.youtube.com/vi/FEl0-zpXVyw/0.jpg","https://img.youtube.com/vi/V2oU8pZgV2M/0.jpg","https://img.youtube.com/vi/K0e22jRwkDg/0.jpg"],"links":["https://www.youtube.com/watch?v=FEl0-zpXVyw","https://coincentral.com/what-is-eos/","https://hackernoon.com/dan-larimer-visionary-programmer-of-bitshares-steem-and-eos-7e6d94b241d7","https://www.reddit.com/r/eos/comments/88585f/the_exhaustive_eos_faq/","https://eos.io/faq.html","https://buyingeos.com/","https://unhashed.com/how-to-buy-cryptocurrency/eos/","https://steemit.com/eos/@sandwich/contributing-to-eos-token-sale-with-myetherwallet-and-contract-inner-workings","https://www.youtube.com/watch?v=V2oU8pZgV2M","https://www.youtube.com/watch?v=K0e22jRwkDg","https://eosscan.io/","https://etherscan.io/token/EOS","https://coinmarketcap.com/currencies/eos/#markets","https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper","https://github.com/EOSIO/Documentation/blob/TWPv2/TechnicalWhitePaper.md"],"app":"steemit/0.1"} |
created | 2018-03-30 19:34:09 |
last_update | 2018-03-30 19:34:09 |
depth | 1 |
children | 1 |
last_payout | 2018-04-06 19:34: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,360 |
author_reputation | 172,209,210,136 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 47,507,549 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
unus | 0 | 0 | 100% |
funny, to my request for more info you provided also a link to this exact steemit article. thanks anyway :)
author | unus |
---|---|
permlink | re-joelaldrich-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180504t210512946z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-05-04 21:05:15 |
last_update | 2018-05-04 21:05:15 |
depth | 2 |
children | 0 |
last_payout | 2018-05-11 21:05: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 | 107 |
author_reputation | 30,840,728,564 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,905,439 |
net_rshares | 0 |
this looks interesting, i love DPOS
author | kingscrown |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t020716196z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 02:07:18 |
last_update | 2017-05-29 02:07:18 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 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 | 35 |
author_reputation | 2,114,606,667,003,741 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,907,476 |
net_rshares | 0 |
Interesting post Dan. Thanks for sharing.
author | klye |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t021619056z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 02:16:18 |
last_update | 2017-05-29 02:16:18 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 02:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.149 HBD |
curator_payout_value | 0.049 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 412,341,527,771,769 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,907,663 |
net_rshares | 106,338,547,646 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bonapartist | 0 | 106,338,547,646 | 100% |
Thank you. Please keep posting about EOS tech so we can keep up with it.
author | knircky |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t013855887z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 01:38:54 |
last_update | 2017-05-29 01:39:03 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 01:38: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 | 73 |
author_reputation | 212,905,587,244,262 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,906,921 |
net_rshares | 246,847,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badpicks | 0 | 246,847,283 | 100% |
In DPoS,I think the problem can be further simplified by adding block producer(BP)'s signature in a block when he creates a block. That is, if BP create two different blocks at the same time, he can be voted out. Of course, this signature can be removed after a certain number of blocks.
author | loum |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180227t072047001z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-02-27 07:20:51 |
last_update | 2018-02-27 07:22:12 |
depth | 1 |
children | 0 |
last_payout | 2018-03-06 07:20: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 | 290 |
author_reputation | 6,704,515,659,183 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,802,029 |
net_rshares | 0 |
Excellent review, thank you! In light of this, what are the major criticisms to DPOS you know of? It seems obviously superior to algorithms which waste energy, are less secure, and less performant. Do you think others are not aware of how it works or too biased by the technology they've already committed to? Is DPOS the Betamax to proof-of-work's VHS? We know superior technology doesn't always win in the marketplace. So is the next challenge a marketing effort to gain influence and increase adoption for DPOS?
author | lukestokes |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t023631774z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 02:36:33 |
last_update | 2017-05-29 02:36:33 |
depth | 1 |
children | 11 |
last_payout | 2017-06-05 02:36:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.972 HBD |
curator_payout_value | 0.321 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 517 |
author_reputation | 555,781,629,106,002 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,908,098 |
net_rshares | 611,691,821,319 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sandwich | 0 | 0 | 100% | ||
jonno-katz | 0 | 2,678,981,885 | 100% | ||
andrarchy | 0 | 446,541,922,695 | 66% | ||
deanliu | 0 | 162,470,916,739 | 30% | ||
ovaki | 0 | 0 | 100% | ||
greatgama | 0 | 0 | 100% | ||
apgsn | 0 | 0 | 100% | ||
jsky | 0 | 0 | 100% | ||
yashwanthkambala | 0 | 0 | 100% | ||
ssexyryan | 0 | 0 | 100% | ||
monetashi | 0 | 0 | 100% | ||
curiouscoluan | 0 | 0 | 100% |
I believe the market will choose the better tech in this situation. Our community is too smart to continue the adoption of an inferior tech, long term.
author | cyberblock |
---|---|
permlink | re-lukestokes-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170603t191122328z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-06-03 19:10:42 |
last_update | 2017-06-03 19:10:42 |
depth | 2 |
children | 0 |
last_payout | 2017-06-10 19:10: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 | 152 |
author_reputation | 26,134,242,075,354 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,123,433 |
net_rshares | 574,886,637 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yonny | 0 | 574,886,637 | 100% | ||
monetashi | 0 | 0 | 100% |
Biggest criticism is its reliance on votes and how it breaks down under poor token distribution. Politics is unavoidable so it's best to formalize it rather than have the kind of consensus failure bitcoin faces with scaling debate.
author | dan |
---|---|
permlink | re-lukestokes-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t070652379z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 07:06:51 |
last_update | 2017-05-29 07:06:51 |
depth | 2 |
children | 7 |
last_payout | 2017-06-05 07:06:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.705 HBD |
curator_payout_value | 0.233 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 232 |
author_reputation | 155,470,101,136,708 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,913,327 |
net_rshares | 456,461,884,949 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
demotruk | 0 | 19,017,291,873 | 1% | ||
arcurus | 0 | 0 | 9% | ||
ovaki | 0 | 0 | 100% | ||
cryptofreedom | 0 | 15,800,972,753 | 100% | ||
jamesc1 | 0 | 421,643,620,323 | 9% | ||
sophye2 | 0 | 0 | 100% | ||
javierjmc | 0 | 0 | 100% | ||
apgsn | 0 | 0 | 100% | ||
analogclock | 0 | 0 | 100% | ||
zeratax | 0 | 0 | 100% | ||
yashwanthkambala | 0 | 0 | 100% | ||
xophero | 0 | 0 | 100% | ||
ssexyryan | 0 | 0 | 100% | ||
curiouscoluan | 0 | 0 | 100% |
Thank you, Dan. I think the poor token distribution argument is a good one, but hopefully one that can be solved over time. Once things get distributed widely enough, it mostly becomes a non-issue. I have high hopes for the EOS distribution scheme. If it's like how you've done many other things, I'm thinking it'll be ahead of its time. I also agree about the politics. Would be great to avoid it, but since we can't, it makes sense to make it clear and formal.
author | lukestokes |
---|---|
permlink | re-dan-re-lukestokes-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t150634057z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 15:06:33 |
last_update | 2017-05-29 15:06:33 |
depth | 3 |
children | 0 |
last_payout | 2017-06-05 15:06:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.650 HBD |
curator_payout_value | 0.217 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 463 |
author_reputation | 555,781,629,106,002 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,924,422 |
net_rshares | 421,643,620,323 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jamesc1 | 0 | 421,643,620,323 | 9% | ||
javierjmc | 0 | 0 | 100% | ||
curiouscoluan | 0 | 0 | 100% |
Sorry for jumping into your comments but non of this Steemit Techy guys are responding to me. I convinced a friend to join steemit after bragging to him for weeks now its been almost a week and he hasn't gotten a passkey, please i know him and he's gonna bail out on me if he didnt get it soon....*PS - i was referred to @ned or @dantheman but none of them seems to recognise me or any of my comments since joining steemit in March, not to talk of checking some of my post, so pardon me as i just check out all the Dan i seem to come across on Steemit*
author | oluwoleolaide |
---|---|
permlink | re-dan-re-lukestokes-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t090849968z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["ned","dantheman"],"app":"steemit/0.1"} |
created | 2017-05-29 09:09:00 |
last_update | 2017-05-29 09:09:00 |
depth | 3 |
children | 5 |
last_payout | 2017-06-05 09:09: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 | 552 |
author_reputation | 113,793,841,740,896 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,915,996 |
net_rshares | 0 |
> We know superior technology doesn't always win in the marketplace. So is the next challenge a marketing effort to gain influence and increase adoption for DPOS? It depends on what kind of applications are built on top of DPOS. If there are services that can only work with high capacity blockchain, it's pretty clear that there won't be any competition. But, of course, somebody has to build those services first.
author | samupaha |
---|---|
permlink | re-lukestokes-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t130906057z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 13:09:06 |
last_update | 2017-05-29 13:09:06 |
depth | 2 |
children | 1 |
last_payout | 2017-06-05 13:09: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 | 417 |
author_reputation | 43,637,433,899,367 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,921,091 |
net_rshares | 339,597,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badpicks | 0 | 339,597,385 | 100% |
That's a great point. If a Graphene, DPOS system is the _only_ one that can handle specific use cases, then it wouldn't be a Betamax/VHS situation since we'd be the only available decentralized blockchain option. Maybe those verticals are a good place to focus our marketing efforts.
author | lukestokes |
---|---|
permlink | re-samupaha-re-lukestokes-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t150823255z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 15:08:24 |
last_update | 2017-05-29 15:08:24 |
depth | 3 |
children | 0 |
last_payout | 2017-06-05 15:08: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 | 283 |
author_reputation | 555,781,629,106,002 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,924,467 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amoanon | 0 | 0 | 100% |
Thank you for breaking it down like this. I can't believe it is so simple and so secure.
author | matthewtiii |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t033909608z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 03:39:12 |
last_update | 2017-05-29 03:39:12 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 03:39: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 | 88 |
author_reputation | 8,732,434,935,234 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,909,319 |
net_rshares | 0 |
Thank you!
author | nikolai |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t022420485z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 02:22:45 |
last_update | 2017-05-29 02:22:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 02:22: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 | 10 |
author_reputation | 9,571,877,600,096 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,907,812 |
net_rshares | 246,847,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badpicks | 0 | 246,847,283 | 100% |
err @dantheman, my first question is why are you always declining payout on each of your post?....2nd is i brought someone in on Steemit since last week by the name @the-commentator and he had confirmed his email link but no passkey given to him yet, is that a glitch or he was forgotten? cos i remember it took me just 2days to get mine.....*PS- i just don't want him to loose interest after all my bragging that convince him.*
author | oluwoleolaide |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t090239315z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["dantheman","the-commentator"],"app":"steemit/0.1"} |
created | 2017-05-29 09:02:45 |
last_update | 2017-05-29 09:02:45 |
depth | 1 |
children | 3 |
last_payout | 2017-06-05 09:02: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 | 428 |
author_reputation | 113,793,841,740,896 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,915,860 |
net_rshares | 0 |
regarding onboarding new people on STEEMIT, there's apparently a huge backlog right now, like 50K or so! If your friend is still having trouble getting approved after a week or so, have him visit the steem.chat help forum. They should be able to help get him all sorted out!
author | alexpmorris |
---|---|
permlink | re-oluwoleolaide-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t171234026z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 17:12:36 |
last_update | 2017-05-29 17:12:36 |
depth | 2 |
children | 2 |
last_payout | 2017-06-05 17:12: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 | 274 |
author_reputation | 32,063,874,290,523 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,928,219 |
net_rshares | 0 |
Without him not fully registered on steemit?....is that possible?.....so i could ask him to join
author | oluwoleolaide |
---|---|
permlink | re-alexpmorris-re-oluwoleolaide-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t172848427z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 17:28:57 |
last_update | 2017-05-29 17:28:57 |
depth | 3 |
children | 1 |
last_payout | 2017-06-05 17:28: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 | 96 |
author_reputation | 113,793,841,740,896 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,928,750 |
net_rshares | 0 |
Hi, I've seen some of your publications I'm going to follow, follow me and let's collaborate together
author | otitrader |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t223444336z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 22:35:36 |
last_update | 2017-05-29 22:35:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 22:35: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 | 101 |
author_reputation | 333,248,577,305 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,938,070 |
net_rshares | 308,724,895 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badpicks | 0 | 308,724,895 | 100% |
Good lucky with your new project . This may help you : https://steemit.com/eos/@patelincho/dpos-consensus-algorithm-white-paper-of-eos-translated-into-bulgarian-dpos-algoritm-za-konsensus-byala-kniga-na-eos-prevedena-na
author | patelincho |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t101108884z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://steemit.com/eos/@patelincho/dpos-consensus-algorithm-white-paper-of-eos-translated-into-bulgarian-dpos-algoritm-za-konsensus-byala-kniga-na-eos-prevedena-na"],"app":"steemit/0.1"} |
created | 2017-05-29 10:19:42 |
last_update | 2017-05-29 10:19:42 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 10:19:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.294 HBD |
curator_payout_value | 0.096 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 52,897,220,193,484 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,917,368 |
net_rshares | 200,397,589,984 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dantheman | 0 | 199,699,563,906 | 1% | ||
iang | 0 | 358,428,693 | 100% | ||
badpicks | 0 | 339,597,385 | 100% |
This is a nicely approachable explanation of the security of DPoS, which serves to reinforce the clear advantages it holds over other blockchain securing methods.
author | pfunk |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t085211064z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 08:52:24 |
last_update | 2017-05-29 08:52:24 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 08:52: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 | 162 |
author_reputation | 221,632,045,904,452 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,915,637 |
net_rshares | 0 |
Thks for bringing this missing part. I've been bringing DPoS Blockchain Solution in my local Blockchain community since Bitshares 2.0 and I'm happy to say for having experience for 2 years with Bitshares & Steem that it's working smootly
author | pnc |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t030601393z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-05-29 03:06:03 |
last_update | 2017-05-29 03:06:03 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 03:06: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 | 237 |
author_reputation | 31,743,007,487,651 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,908,758 |
net_rshares | 10,449,142,541 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
soushi888 | 0 | 10,202,295,258 | 100% | ||
badpicks | 0 | 246,847,283 | 100% |
Hi @dantheman , we wanted to get permission , on the blockchain, to use this article in our whitepaper to explain DPOS, we feel we would do more harm than justice trying to replicate such an excellent explanation. And of course we will give well deserved credit for this great explanation :)
author | qoqo |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180713t165520245z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["dantheman"],"app":"steemit/0.1"} |
created | 2018-07-13 16:55:21 |
last_update | 2018-07-13 16:55:21 |
depth | 1 |
children | 0 |
last_payout | 2018-07-20 16:55: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 | 291 |
author_reputation | 292,758,844 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,557,516 |
net_rshares | 0 |
Dan, I want you to read my post about PoW vs PoS and see if you agree with my statement that bitcoin has likely already died and people just don't know it yet: https://steemit.com/steemit/@r0achtheunsavory/the-r0ach-report-14-defining-if-cryptocurrency-has-a-value-or-zero-value-from-a-fundamental-scientific-perspective My position is also that proof of stake has no inherent value at all, but I don't consider Steem itself a pure proof of stake system, but Bitshares would be. So in summary, whether Steem has a good or bad economic system and lives or dies, I believe Steem was a much more relevant invention of yours than Bitshares in the grand scheme of things.
author | r0achtheunsavory |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t024350404z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://steemit.com/steemit/@r0achtheunsavory/the-r0ach-report-14-defining-if-cryptocurrency-has-a-value-or-zero-value-from-a-fundamental-scientific-perspective"],"app":"steemit/0.1"} |
created | 2017-05-29 02:43:57 |
last_update | 2017-05-29 02:43:57 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 02:43: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 | 669 |
author_reputation | 9,882,634,828,030 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,908,252 |
net_rshares | 246,847,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
garvofe | 0 | 0 | 100% | ||
badpicks | 0 | 246,847,283 | 100% |
Great post thank you I hope i will be able to explain it to lazy and conservative russian legislative and regulative authorities and implement one day bitshares blockchain for the pension system https://steemit.com/bitshares/@rossomahar/dpos-for-blockchain-pension-system-in-russia
author | rossomahar |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t235215782z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://steemit.com/bitshares/@rossomahar/dpos-for-blockchain-pension-system-in-russia"],"app":"steemit/0.1"} |
created | 2017-05-29 23:54:45 |
last_update | 2017-05-29 23:54:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 23:54: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 | 283 |
author_reputation | 213,315,684,597 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,939,853 |
net_rshares | 58,019,190 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rossomahar | 0 | 58,019,190 | 100% |
I want to ask how to get involved in DPOS. Can you show me how to register to run DPOS?
author | shenlong |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180422t093747055z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-04-22 09:37:48 |
last_update | 2018-04-22 09:37:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-29 09:37: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 | 87 |
author_reputation | 215,415,897 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,455,360 |
net_rshares | 0 |
cool!
author | sintezfuture |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170918t144126305z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-09-18 14:41:27 |
last_update | 2017-09-18 14:41:27 |
depth | 1 |
children | 0 |
last_payout | 2017-09-25 14:41: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 | 5 |
author_reputation | 0 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,233,506 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
alilosoft | 0 | 0 | 100% |
Sorry for being off topic, but is your account really worth a couple of mil? !! If so can you give me tips on growing?
author | sixteen4narchist |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170610t085929899z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-06-10 08:59:30 |
last_update | 2017-06-10 08:59:30 |
depth | 1 |
children | 0 |
last_payout | 2017-06-17 08:59: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 | 118 |
author_reputation | -186,217,745,272 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,520,975 |
net_rshares | 0 |
Congratulations @dantheman! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@dantheman) Award for the number of comments received Click on any badge to view your own Board of Honnor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` If you want to support the SteemitBoard project, your upvote for this notification is welcome!
author | steemitboard |
---|---|
permlink | steemitboard-notify-dantheman-20170529t160150000z |
category | dpos |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-05-29 14:01:51 |
last_update | 2017-05-29 14:01:51 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 14:01: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 | 634 |
author_reputation | 38,975,615,169,260 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,922,525 |
net_rshares | 58,019,190 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rossomahar | 0 | 58,019,190 | 100% |
hi, I am dev for many year, but new to the whole crypto field, been involved in other projects and just got some time to learn more about it; I've read the whole thing, and I find myself still not understanding many explanations, many times feeling there's too big steps taken, I need smaller steps cause I miss knowledge about the field; where should I start to get my base knowledge from, so I could understand better how EOS works (in this particular case the consensus algo)? thank you
author | unus |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180316t171650197z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-03-16 17:16:57 |
last_update | 2018-03-16 17:16:57 |
depth | 1 |
children | 0 |
last_payout | 2018-03-23 17:16: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 | 489 |
author_reputation | 30,840,728,564 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 44,803,161 |
net_rshares | 0 |
Thank you
author | uplus |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170604t153643621z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-06-04 15:36:45 |
last_update | 2017-06-04 15:36:45 |
depth | 1 |
children | 0 |
last_payout | 2017-06-11 15: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 | 9 |
author_reputation | 6,324,428,302,186 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,163,173 |
net_rshares | 0 |
hello sir i just want a little favor from you you have so much steem in your account can you only give me just 250 steem please i want to buy my best friend a camera for his birthday i will return it back when i have made enough in my account Please ..
author | uxmanqaxim |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180224t102929220z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-02-24 10:29:33 |
last_update | 2018-02-24 10:29:33 |
depth | 1 |
children | 1 |
last_payout | 2018-03-03 10:29: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 | 252 |
author_reputation | 85,800,634,112 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,062,629 |
net_rshares | 0 |
This is The Photo Of My Friend And Myself So Please
author | uxmanqaxim |
---|---|
permlink | re-uxmanqaxim-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180224t104031333z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-02-24 10:40:36 |
last_update | 2018-02-24 10:40:36 |
depth | 2 |
children | 0 |
last_payout | 2018-03-03 10:40: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 | 51 |
author_reputation | 85,800,634,112 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 40,064,323 |
net_rshares | 366,210,280 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
uxmanqaxim | 0 | 366,210,280 | 100% |
Thanks for this @dantheman. Helps explain and understand much more.
author | virtualgrowth |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t013936286z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["dantheman"],"app":"steemit/0.1"} |
created | 2017-05-29 01:39:36 |
last_update | 2017-05-29 01:39:36 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 01:39:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.225 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 194,179,150,864,177 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,906,931 |
net_rshares | 152,613,256,048 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
proglobyte | 0 | 1,723,560,961 | 100% | ||
proglobyte-m1 | 0 | 1,664,012,572 | 100% | ||
tingaling | 0 | 1,678,074,521 | 100% | ||
kurtbeil | 0 | 131,881,558,242 | 100% | ||
zentat | 0 | 3,524,031,309 | 100% | ||
steembriefing | 0 | 2,021,298,976 | 100% | ||
steemitawards | 0 | 1,186,367,771 | 100% | ||
steemint | 0 | 1,996,737,868 | 100% | ||
free2play | 0 | 1,044,123,176 | 100% | ||
the50 | 0 | 3,331,649,142 | 100% | ||
texas-steemem | 0 | 1,280,992,996 | 100% | ||
steemlancer | 0 | 1,280,848,514 | 100% |
Merci for the post @dantheman. This is the third blockchain white paper I've fully read. Maybe I will eventually start to understand if I keep reading. I recently experienced an orphaned block with PIVX where I lost a fair amount of staking rewards. Yet I appear to not have gone off chain. Mysterious.
author | voxxe |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170529t020953746z |
category | dpos |
json_metadata | {"tags":["dpos"],"users":["dantheman"],"app":"steemit/0.1"} |
created | 2017-05-29 02:09:54 |
last_update | 2017-05-29 02:09:54 |
depth | 1 |
children | 0 |
last_payout | 2017-06-05 02:09: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 | 302 |
author_reputation | 884,428,885,615 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 3,907,522 |
net_rshares | 246,847,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
badpicks | 0 | 246,847,283 | 100% |
Hi Dantheman! Incredible journey this! Just wrote a post "the true power of steemit, building community, empowering change - thought you might appreciate some aspects of it! https://steemit.com/anarchism/@willstephens/the-true-power-of-steemit-building-community-empowering-change As I am new here any help you can give me to get on the ladder would be for ever appreciated, have a beautiful day ;-), Thanks, Will
author | willstephens |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170616t102253667z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://steemit.com/anarchism/@willstephens/the-true-power-of-steemit-building-community-empowering-change"],"app":"steemit/0.1"} |
created | 2017-06-16 10:22:54 |
last_update | 2017-06-16 10:22:54 |
depth | 1 |
children | 0 |
last_payout | 2017-06-23 10:22: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 | 413 |
author_reputation | 486,592,546,929 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,997,242 |
net_rshares | 0 |
it's good.nice job.
author | wupei |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170901t060115471z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-09-01 06:01:15 |
last_update | 2017-09-01 06:01:15 |
depth | 1 |
children | 0 |
last_payout | 2017-09-08 06:01: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 | 19 |
author_reputation | 180,983,462,840 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,520,504 |
net_rshares | 0 |
Amazing post, very informative. With all that steem, you should sit back relax and listen to some tunes, blow some steem on my music. ;) Selling my songs for Steem, for fans of Vaporwave, Electronic, a tiny bit of 80s mixed with a lot of different eras. All 3 tracks mixed by Christoffer Berg (The Knife, Fever Ray) https://steemit.com/steemit/@wvm/my-song-i-will-run-for-steem https://steemit.com/steemit/@wvm/my-song-sown-for-steem https://steemit.com/steem/@wvm/selling-my-song-blood-for-steem
author | wvm |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170606t083858026z |
category | dpos |
json_metadata | {"tags":["dpos"],"links":["https://steemit.com/steemit/@wvm/my-song-i-will-run-for-steem","https://steemit.com/steemit/@wvm/my-song-sown-for-steem","https://steemit.com/steem/@wvm/selling-my-song-blood-for-steem"],"app":"steemit/0.1"} |
created | 2017-06-06 08:38:57 |
last_update | 2017-06-06 08:38:57 |
depth | 1 |
children | 0 |
last_payout | 2017-06-13 08:38: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 | 496 |
author_reputation | 1,755,829,867,297 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 4,259,956 |
net_rshares | 499,243,753 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wvm | 0 | 499,243,753 | 100% |
truly awesome
author | yashwanthkambala |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180516t155851137z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-05-16 15:58:54 |
last_update | 2018-05-16 15:58:54 |
depth | 1 |
children | 0 |
last_payout | 2018-05-23 15:58: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 | 13 |
author_reputation | 1,082,573,359,207 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,034,274 |
net_rshares | 324,880,828 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yashwanthkambala | 0 | 324,880,828 | 100% |
In the minority fork situation (for example) - how is it enforced that B waits for its turn to add new block and not just adding new block as fast as it can? In other words: "In this case the minority fork will only produce one block every 9 seconds while the majority fork will produce 2 blocks every 9 seconds." - how is that enforced?
author | zby |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20170712t171332636z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-07-12 17:13:33 |
last_update | 2017-07-12 17:13:33 |
depth | 1 |
children | 0 |
last_payout | 2017-07-19 17:13: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 | 337 |
author_reputation | 0 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 8,247,353 |
net_rshares | 0 |
Reading the EOS white paper, I was just wondering if you've declared a dynamic array for the "named permission levels". If I was writing this I might be inclined to create an array with a TPermission class where each TPermission object is dynamically allocated/freed and has properties such as... PrivateKey: array of char(0..x); PublicKey: array of char(0..x); Permission: TAuthority; // class with range of permission scope with boolean vars for each area of access ... But then defining the capabilities of the contract types eludes me. Custom contract design is not easy to account for in code unless a lawyer writes the code for each situation.
author | zoidsoft |
---|---|
permlink | re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20171125t040114635z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2017-11-25 04:01:24 |
last_update | 2017-11-25 04:01:24 |
depth | 1 |
children | 1 |
last_payout | 2017-12-02 04:01: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 | 654 |
author_reputation | 17,657,439,386,076 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,449,085 |
net_rshares | 0 |
Yes and No!!!
author | alilosoft |
---|---|
permlink | re-zoidsoft-re-dantheman-dpos-consensus-algorithm-this-missing-white-paper-20180115t172253812z |
category | dpos |
json_metadata | {"tags":["dpos"],"app":"steemit/0.1"} |
created | 2018-01-15 17:22:54 |
last_update | 2018-01-15 17:22:54 |
depth | 2 |
children | 0 |
last_payout | 2018-01-22 17:22: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 | 13 |
author_reputation | 2,027,494,761 |
root_title | "DPOS Consensus Algorithm - The Missing White Paper" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,751,298 |
net_rshares | 0 |