I recently had an opportunity to review Cardano’s Ouroboros consensus algorithm as presented in a youtube presentation. The original paper can be found [here](https://eprint.iacr.org/2016/889.pdf). The marketing behind Cardano and Ouroboros is that it is the first “peer reviewed”, “provably secure” proof of stake consensus algorithm. Upon reading their paper it becomes clear to those familiar with BitShares 1.0, Graphene, Steem, and EOS that Ouroboros is a copy of Delegated Proof of Stake (DPoS) with a few counter-productive modifications. In fact their paper refers to the term “πDPoS” 17 times without mentioning or recognizing any of my prior work. https://www.youtube.com/watch?v=fBKCbhX-dXI Before getting into the more technical review of Ouroboros, let’s look at the performance of the final product. ## Block Interval Block interval determines the latency until a transaction is included in the first block. This is the lower-bound on the responsiveness of decentralized applications built on the protocol. Applications like Steem and BitShares are not really viable unless there is low latency and high certainty of finality. EOS: 0.5 seconds Steem/BitShares: 3 seconds Ouroboros: 20 seconds ## Irreversibility This is how long someone must wait to be certain that a transaction will not be undone by a new/longer fork being released that excludes the transaction. Irreversibility is very important for any multi-step transactions. You don’t want to ship goods until payment is confirmed. You cannot make one trade until the prior trade is locked in. A decentralized exchange is not viable on a platform that has significant latency until irreversibility. EOS: <= 2 seconds Steem/BitShares: <= 45 seconds Ouroboros: > 5 hours ## Ouroboros is Unfit for Decentralized Applications If we assume Ouroboros is actually “more provably secure” by some definition of secure, it is of little practical value because as specified the security completely compromises the practically. It would be like claiming a bullet proof vest is “provably safe” but it weighs 400 pounds. At some point other factors of system design take priority. Unfortunately we cannot simply assume it has been proven secure. I will demonstrate that despite claims to the contrary, Ouroboros is far less secure due to faulty assumptions in its design. In other words, Ouroboros is a 400 pound bullet proof vest that doesn’t actually stop the real bullets. ## Components of Delegated Proof of Stake (aka Ouroboros) The Delegated Proof of Stake algorithm is divided into two parts: - Selecting a set of block producers - Scheduling the producers into time slots The process of selecting block producers is typically derived from proof of stake which may be delegated. The set of block producers is periodically updated. In BitShares this happens every maintenance interval (1 hour), in Steem and EOS it happens every round (N blocks where N is defined as the number of producers in the set). In Ouroboros it happens every 5 days according to Charles Hoskinson in an interview where he describes the protocol. Once the set of producers are selected they are assigned to time slots where a producer can either produce a block or not. The chain with the most consensus will have the fewest missed blocks and therefore be the longest chain. In ouroboros they call this the “density” of the chain, but the concept is the same. ## Selecting Block Producers Under Ouroboros anyone who wants to be a producer can be selected for a slot proportional to the amount of stake they own or is delegated to them. This is similar to how Steem selects 1 producer in every set (aka every minute). Whereas Steem only schedules 1 out of every 21 time slots in this manner, Ouroboros schedules all time slots with this mathematical distribution. In the case of Ouroboros only those with at least 1% of stake delegated to them are eligible to be in the set of producers, but Steem places no lower limit. ## Scheduling Block Producers into Slots The primary difference between Steem and Ouroboros’ system is that Steem uses deterministic scheduling with pseudorandom shuffling and Ouroboros uses sampling from a source of provable randomness created by a committee of randomly selected stakeholders. Oroboros places a very strong focus on the need for a trustless source of randomness in order to ensure the producer schedule isn’t manipulated by block producers manipulating the block contents so as to control the schedule. ### Security Concerns addressed by Randomness The heart of blockchain security is knowing that during every confirmation window that a diverse set of unlikely-to-collude entities produce blocks. Time to irreversibility depends upon how long it takes to get input from a 2/3+ majority of potential producers. If the order of producer scheduling can be controlled by the producers there exists a circular dependency. This is the origin of the name Ouroboros (a snake eating its own tail). The focus of the Ouroboros design is to ensure that 2/3+ honest producers can be scheduled without interference. This is why they lock in the set of producers for days and schedule them with a set of provable randomness that no party can manipulate. ### Steem / BitShares / EOS Existing DPOS chains select a set of unlikely to collude entities by approval voting and then schedule them in a pseudorandom order. This shuffling is not really needed because once each of them participates a single block a 2/3+ consensus can be determined. This is why EOS will be removing the random shuffle all together. With Ouroboros the length of time until 2/3+ of the stake is “randomly selected” is not known. It is entirely possible that in some windows all block producer slots will be randomly assigned to the same producer. While this is statistically unlikely, it is not unreasonable to presume that a long sequence of blocks could be assigned to collusive peers. You can think of the process of confirmation on Ouroboros to be like an installation progress bar that jumps by random increments. Sometimes it moves forward quickly, other times it taunts you by not making any real progress despite new blocks being produced. This gives Ouroboros unpredictable latency like Bitcoin. In the best case 2/3+ of the stake might get scheduled in the a half dozen blocks, but in the average case it will take much longer, particularly if there are many producers with 1% weight or a producer with 50% weight is scheduled many times in a row by random chance. ### Distribution Security Issues I have previously made the case that BitShares, Steem, and EOS are the most decentralized because it has the most unique confirmations per confirmation window. In a 6 block confirmation window for Bitcoin only 5 unique individuals confirm a block on average (usually at least one mining pool goes twice in a random 6 block window). In Steem 14 people confirm a block each round. Because stake and votes are distributed by pareto principle, we know that Ouroboros will assign block producers like mining assigns mining pools. It is exceedingly unlikely that 100 producers will each have 1% of the delegated stake. It is far more likely that there will be fewer than 20 individuals with more than 1% stake required to be approved. Furthermore, there are voting paradoxes in play where voting for someone who doesn’t already have 1% or more of the stake is a wasted vote. In past articles on proof of stake I have also shown that even if Ouroboros removed the 1% requirement to participate, it would be economically unviable to cover the cost of operating a node with income from less than 1% of the block rewards. I have also argued in the past that because stake is distributed by pareto principle, and voter selection of candidates is also selected by pareto principle, the resulting distribution of stake among producers is pareto<sup>2</sup>. In other words, stake-weighted voting creates a very high centralization that can only be countered with approval voting followed by giving the top N equal weight (like BitShares, Steem, and EOS do). Even if the stakeholders divide their stakes and votes to attempt to even out the producer weights, the system is still ultimately under pareto control 1% of the individuals control 51% of the stake. Corruption takes place at the individual level, not the stake level. Furthermore, it is wrong to assume that large stake holders will behave like a group of smaller stakeholders of similar size. Regardless of their stake, they only have one opinion and one interest and therefore the information (good or bad) they contribute to the system is independent of the size of their stake. ## Conclusion Cardano’s Ouroboros algorithm is not mathematically secure due to bad assumptions regarding the relationship between stake and individual-judgment being distributed by the pareto principle. Furthemore, their algorithm is not “new” but a less secure slower variation of the DPOS algorithm I originally introduced in April 2014. The authors of the paper failed to cite relevant prior art or to justify why their deviations from existing art are an improvement. A blockchain consensus algorithm claiming to value peer review needs to consider who they consider their peers and all such reviews should be public. In the blockchain space, our peers are other blockchain technology companies. From this we can see that DPOS (and variations thereof) is one of the fastest growing consensus algorithms in terms of the number of unique projects choosing it. I am going to go a step further and claim that much of the academic research and proofs performed by Cardano’s team only bolsters the support and justification of many core DPOS concepts, even if their approach is suboptimal compared to designs of EOS, BitShares, and Steem.
author | dan |
---|---|
permlink | peer-review-of-cardano-s-ouroboros |
category | cardamon |
json_metadata | {"tags":["cardamon","ouroboros","eos","steem","bitshares"],"image":["https://img.youtube.com/vi/fBKCbhX-dXI/0.jpg"],"links":["https://eprint.iacr.org/2016/889.pdf","https://www.youtube.com/watch?v=fBKCbhX-dXI"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-01-06 05:54:30 |
last_update | 2018-01-06 05:54:30 |
depth | 0 |
children | 407 |
last_payout | 2018-01-13 05:54: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 | 9,862 |
author_reputation | 155,470,101,136,708 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 27,452,173 |
net_rshares | 136,966,211,136,997 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
erath | 0 | 255,954,065 | 1% | ||
analisa | 0 | 249,949,339,388 | 5% | ||
berkah | 0 | 83,119,522,347 | 100% | ||
dan | 0 | 13,271,381,334,557 | 100% | ||
jamesc | 0 | 13,962,940,559,936 | 100% | ||
wackou | 0 | 6,039,936,828,639 | 80% | ||
xeldal | 0 | 7,249,250,817,111 | 100% | ||
hr1 | 0 | 50,122,127,827 | 1% | ||
tombstone | 0 | 7,261,098,600,447 | 30% | ||
friend5 | 0 | 305,922,649,031 | 100% | ||
sandra | 0 | 13,337,849,503 | 13% | ||
rossco99 | 0 | 30,492,155,680 | 100% | ||
liondani | 0 | 1,735,217,678,170 | 100% | ||
bue | 0 | 13,816,881,235 | 100% | ||
lovejoy | 0 | 31,616,611,592 | 100% | ||
mrs.agsexplorer | 0 | 137,561,437,230 | 40% | ||
benjojo | 0 | 17,786,712,333 | 100% | ||
boatymcboatface | 0 | 1,249,536,294,148 | 100% | ||
twiceuponatime | 0 | 1,720,250,766 | 1% | ||
indominon | 0 | 7,272,148,081 | 100% | ||
onceuponatime | 0 | 73,214,382,883 | 1% | ||
marginal | 0 | 217,982,940 | 1% | ||
vault | 0 | 2,260,805,500 | 1% | ||
cob | 0 | 1,753,236,038,706 | 100% | ||
donkeypong | 0 | 573,996,822,709 | 5% | ||
team | 0 | 59,625,040,799 | 7% | ||
elmato | 0 | 2,665,255,035 | 100% | ||
bangking | 0 | 3,259,538,536 | 100% | ||
fractalnode | 0 | 19,683,805,730 | 100% | ||
marketingmonk | 0 | 707,516,425,110 | 100% | ||
pnc | 0 | 273,297,537,738 | 100% | ||
nikolai | 0 | 288,112,051,834 | 21% | ||
mf-tzo | 0 | 10,202,835,073 | 100% | ||
chris4210 | 0 | 578,478,474,185 | 100% | ||
chryspano | 0 | 961,142,743,126 | 100% | ||
methodise | 0 | 0 | 100% | ||
max-infeld | 0 | 8,732,585,215 | 100% | ||
josephcraig289 | 0 | 1,110,649,656 | 100% | ||
bleepcoin | 0 | 519,886,524,904 | 100% | ||
martijnbolt | 0 | 0 | 100% | ||
gekko | 0 | 6,354,953,960 | 100% | ||
teamsteem | 0 | 9,711,318,233,311 | 100% | ||
lakerta06 | 0 | 2,638,077,562 | 100% | ||
dan-atstarlite | 0 | 334,467,141,949 | 100% | ||
tosch | 0 | 642,809,000,492 | 100% | ||
kevinwong | 0 | 113,036,383,545 | 2% | ||
mughat | 0 | 1,774,694,727,358 | 100% | ||
chadrickm | 0 | 1,541,602,455 | 100% | ||
theshell | 0 | 172,921,399,018 | 100% | ||
ashe-oro | 0 | 379,728,383,603 | 100% | ||
cm-steem | 0 | 470,097,614,124 | 100% | ||
noganoo | 0 | 12,395,461,804 | 100% | ||
the-alien | 0 | 88,506,614,077 | 100% | ||
samether | 0 | 4,664,875,791 | 100% | ||
dahaz159 | 0 | 29,022,561,863 | 100% | ||
facer | 0 | 173,436,099,194 | 100% | ||
tee-em | 0 | 452,360,156 | 100% | ||
sander-lacerda | 0 | 1,224,863,721,199 | 100% | ||
knopki | 0 | 1,179,698,384 | 100% | ||
gtg | 0 | 2,244,885,850,135 | 50% | ||
superfreek | 0 | 2,395,068,728 | 100% | ||
catchfire | 0 | 39,671,303,681 | 22% | ||
rodomonte | 0 | 0 | 100% | ||
robrigo | 0 | 271,348,527,666 | 100% | ||
hitmeasap | 0 | 55,240,451,960 | 50% | ||
bitnation | 0 | 9,335,226,755 | 100% | ||
cultura.bitcoin | 0 | 890,397,944 | 100% | ||
scottv53 | 0 | 188,991,560 | 100% | ||
incomemonthly | 0 | 6,767,069,328 | 50% | ||
transisto | 0 | 3,073,372,725,298 | 30% | ||
joshuaseymour | 0 | 746,686,629 | 100% | ||
amirabrams | 0 | 179,232,639 | 100% | ||
kendewitt | 0 | 41,357,627,840 | 100% | ||
podrock | 0 | 2,930,288,238 | 100% | ||
coininstant | 0 | 40,476,771,360 | 100% | ||
chrisd | 0 | 458,816,151 | 100% | ||
tokyodude | 0 | 6,881,140,957 | 50% | ||
slava | 0 | 8,545,710,750 | 100% | ||
raymonjohnstone | 0 | 17,313,690,040 | 100% | ||
arconite | 0 | 3,448,382,546 | 50% | ||
yogi | 0 | 1,914,394,955 | 100% | ||
johnsmith | 0 | 52,978,423,492 | 100% | ||
greenman | 0 | 612,536,217,643 | 100% | ||
lsc9999 | 0 | 51,202,416,976 | 100% | ||
webosfritos | 0 | 1,991,112,052 | 100% | ||
toxic | 0 | 4,629,065,562 | 100% | ||
skyeg3 | 0 | 253,823,099 | 100% | ||
veerprit | 0 | 2,005,092,192 | 100% | ||
ekitcho | 0 | 1,641,007,073,308 | 50% | ||
cmorton | 0 | 6,493,732,125 | 100% | ||
bitcalm | 0 | 337,099,507 | 100% | ||
jschindler | 0 | 5,875,073,218 | 100% | ||
johnvibes | 0 | 736,570,019 | 1% | ||
hendry | 0 | 237,750,051 | 100% | ||
protegeaa | 0 | 147,988,164,386 | 100% | ||
lasseehlers | 0 | 0 | 100% | ||
indykpol | 0 | 5,864,211,659 | 100% | ||
leesmoketree | 0 | 61,230,393,389 | 36% | ||
maneco64 | 0 | 33,797,299,787 | 100% | ||
dmesquita | 0 | 150,497,985,113 | 100% | ||
themonetaryfew | 0 | 571,497,764,319 | 100% | ||
dannyshine | 0 | 180,045,781,310 | 100% | ||
richardcrill | 0 | 179,881,141,452 | 100% | ||
leoplaw | 0 | 9,258,720,294 | 100% | ||
ctbradley | 0 | 222,769,096 | 100% | ||
demions | 0 | 617,641,716 | 100% | ||
lifeasalion | 0 | 5,179,106,259 | 100% | ||
kyusho | 0 | 14,096,396,615 | 10% | ||
arrax | 0 | 1,041,862,288 | 100% | ||
scottsantens | 0 | 2,159,442,110 | 100% | ||
cybernatic | 0 | 217,234,849 | 100% | ||
resilience | 0 | 212,861,926 | 100% | ||
mjhomb | 0 | 128,109,235,734 | 100% | ||
z3r0d4yz | 0 | 9,036,336,472 | 100% | ||
whatsup | 0 | 4,408,479,486 | 1% | ||
freebornangel | 0 | 1,245,667,096 | 4% | ||
tarekadam | 0 | 334,273,677,695 | 100% | ||
dragonsquaw | 0 | 10,556,225,002 | 100% | ||
justusagenstum | 0 | 56,535,066,308 | 100% | ||
socialmedia | 0 | 1,885,840,738 | 100% | ||
wakeupworldnews | 0 | 9,731,770,514 | 68.64% | ||
mango369 | 0 | 0 | 100% | ||
steemtruth | 0 | 92,195,295,782 | 30% | ||
paulocouto | 0 | 2,036,713,025 | 100% | ||
tomino | 0 | 527,348,685 | 100% | ||
forestwest | 0 | 6,836,547,872 | 100% | ||
blhz | 0 | 16,273,506,241 | 100% | ||
daverex | 0 | 2,689,608,198 | 100% | ||
stray | 0 | 150,902,535,298 | 100% | ||
thejohalfiles | 0 | 42,330,852,768,356 | 100% | ||
yangrisa | 0 | 42,015,016,719 | 100% | ||
alanfreestone | 0 | 118,025,376,172 | 100% | ||
steemitbb | 0 | 3,308,812,025 | 100% | ||
breezin | 0 | 24,280,817,007 | 100% | ||
marble | 0 | 3,149,084,775 | 100% | ||
transcendence | 0 | 2,360,249,514 | 100% | ||
poosham | 0 | 2,353,956,294 | 100% | ||
walterjay | 0 | 262,228,079,590 | 100% | ||
skypal | 0 | 52,831,310,646 | 100% | ||
v4vapid | 0 | 2,905,324,469,843 | 20% | ||
fricibacsi | 0 | 45,090,454,450 | 100% | ||
gmikeyg | 0 | 4,038,422,220 | 100% | ||
cryptonix | 0 | 0 | 100% | ||
bitbuddha | 0 | 679,299,325 | 100% | ||
carrielynna | 0 | 2,090,305,769 | 100% | ||
nickit | 0 | 21,611,590,031 | 100% | ||
codydeeds | 0 | 36,417,461,570 | 100% | ||
doodrun | 0 | 2,598,503,510 | 100% | ||
plankton | 0 | 1,209,987,159 | 100% | ||
alfarisi | 0 | 3,826,226,356 | 100% | ||
dragon40 | 0 | 547,318,439 | 2% | ||
extremedistaste | 0 | 4,503,027,592 | 100% | ||
liotap | 0 | 816,755,440,865 | 100% | ||
riskdebonair | 0 | 151,594,121,746 | 100% | ||
da-dawn | 0 | 4,265,458,791 | 9% | ||
priyanka | 0 | 1,059,080,809 | 100% | ||
achilles | 0 | 1,636,068,787 | 100% | ||
makedonsk | 0 | 2,402,324,533 | 100% | ||
honusurf | 0 | 18,982,277,893 | 100% | ||
vidallia | 0 | 5,633,677,541 | 65% | ||
naturally.audrey | 0 | 8,247,176,642 | 100% | ||
legent | 0 | 57,771,818 | 100% | ||
bhikkhu | 0 | 12,668,983,417 | 100% | ||
tiagopaixao | 0 | 1,396,440,333 | 100% | ||
armiden | 0 | 1,655,425,722 | 100% | ||
elmetro | 0 | 196,887,127,400 | 100% | ||
melip | 0 | 108,416,180,366 | 50% | ||
arsenal49 | 0 | 27,775,782,218 | 23% | ||
sanov | 0 | 1,426,748,463 | 100% | ||
pawnuts | 0 | 15,073,886,234 | 100% | ||
nov3a4 | 0 | 3,113,268,514 | 100% | ||
libramedia | 0 | 55,654,667 | 100% | ||
tibra | 0 | 576,944,216 | 100% | ||
eggtank | 0 | 11,028,972,268 | 100% | ||
rumblestiltskin | 0 | 895,115,870 | 100% | ||
balasan | 0 | 1,672,200,047 | 100% | ||
ryanprentiss | 0 | 8,714,042,226 | 100% | ||
sirryg | 0 | 628,355,980 | 100% | ||
quantumevolution | 0 | 614,500,000 | 100% | ||
greenstar | 0 | 30,253,001,987 | 100% | ||
emac | 0 | 621,340,000 | 100% | ||
civis-mundi | 0 | 953,774,713 | 100% | ||
steemtomi | 0 | 25,066,317,067 | 100% | ||
bloom | 0 | 177,647,246,429 | 50% | ||
santanero714 | 0 | 119,897,700 | 100% | ||
tasmansee | 0 | 0 | 100% | ||
pagandance | 0 | 18,757,913,254 | 100% | ||
sven | 0 | 847,100,432 | 100% | ||
akrid | 0 | 3,632,713,267 | 100% | ||
lukzurski | 0 | 621,340,000 | 100% | ||
beckenbauer | 0 | 55,637,317,710 | 100% | ||
anubisthegaylord | 0 | 4,252,567,393 | 100% | ||
yacov | 0 | 2,910,292,725 | 50% | ||
forykw | 0 | 21,924,891,101 | 100% | ||
scotty777 | 0 | 2,143,569,159 | 100% | ||
clacem05 | 0 | 621,009,206 | 100% | ||
beordo | 0 | 7,196,226,978 | 100% | ||
chrisbahamonde | 0 | 524,146,007 | 100% | ||
chetwithersby | 0 | 4,879,521,291 | 100% | ||
sneakgeekz | 0 | 32,773,081,327 | 25% | ||
naveen.teja | 0 | 621,920,261 | 100% | ||
weetreebonsai | 0 | 9,341,676,347 | 100% | ||
ebejammin | 0 | 11,152,329,712 | 100% | ||
ikegass33 | 0 | 79,341,337,620 | 100% | ||
nazirkhyber | 0 | 5,513,143,645 | 100% | ||
flauschi | 0 | 0 | 0% | ||
karlpy | 0 | 614,503,785 | 100% | ||
taimur95khan | 0 | 524,503,462 | 100% | ||
chaka321 | 0 | 11,792,972,405 | 100% | ||
wanxlol | 0 | 28,054,446,382 | 100% | ||
scottland | 0 | 1,132,736,792 | 100% | ||
pta2002 | 0 | 0 | 0% | ||
almost-digital | 0 | 196,316,503,962 | 20% | ||
satoshibit | 0 | 11,157,917,508 | 100% | ||
quanahjayhicks | 0 | 309,800,898 | 1% | ||
nake13 | 0 | 0 | 100% | ||
zeteticmindset | 0 | 403,302,554 | 20% | ||
jafooley22 | 0 | 585,446,400 | 100% | ||
lokya12 | 0 | 41,206,683,733 | 100% | ||
saylor | 0 | 614,860,000 | 100% | ||
necada | 0 | 559,522,600 | 100% | ||
tajnost | 0 | 614,860,000 | 100% | ||
bbhart | 0 | 591,641,600 | 100% | ||
soa432 | 0 | 610,227,200 | 100% | ||
papotus | 0 | 65,722,637,713 | 100% | ||
tman6495 | 0 | 2,001,615,576 | 100% | ||
coinstar | 0 | 607,129,600 | 100% | ||
cryptoparaszt | 0 | 614,860,000 | 100% | ||
dyslex | 0 | 622,451,457 | 100% | ||
maxer27 | 0 | 29,073,097,762 | 100% | ||
guinandoideias | 0 | 252,435,681 | 100% | ||
vannyfath | 0 | 293,324,872 | 100% | ||
quantum64 | 0 | 457,872,596 | 100% | ||
kuldeepkaul | 0 | 397,041,398 | 100% | ||
janpolasek | 0 | 619,520,000 | 100% | ||
blaineb | 0 | 2,813,340,032 | 100% | ||
yatirimci | 0 | 610,227,200 | 100% | ||
ericrumor | 0 | 5,690,727,583 | 100% | ||
fproductions | 0 | 5,749,187,674 | 100% | ||
theycallmevic | 0 | 0 | 100% | ||
acehfood | 0 | 533,466,894 | 100% | ||
tere7 | 0 | 1,242,560,526 | 100% | ||
vincent9432 | 0 | 23,121,464,239 | 100% | ||
winburn | 0 | 523,118,882 | 100% | ||
makcum52 | 0 | 198,298,959 | 100% | ||
rival | 0 | 3,819,007,389 | 7.62% | ||
kim-taylor | 0 | 618,824,468 | 100% | ||
lewis831 | 0 | 13,709,493,662 | 100% | ||
brenetsimer | 0 | 593,812,902 | 100% | ||
formcrypto | 0 | 559,415,474 | 90% | ||
dr-waldo | 0 | 1,880,609,909 | 100% | ||
quantumhealing | 0 | 0 | 100% | ||
crypto-dan | 0 | 619,520,000 | 100% | ||
roscrypto | 0 | 614,503,440 | 100% | ||
anamnesia | 0 | 2,165,338,925 | 100% | ||
hendrasteem | 0 | 162,878,686 | 100% | ||
fasterv12 | 0 | 619,561,385 | 100% | ||
shareme | 0 | 619,520,000 | 100% | ||
joe007 | 0 | 3,489,941,077 | 100% | ||
alextracy | 0 | 617,220,000 | 100% | ||
prince-maanisaad | 0 | 0 | 0% | ||
smashy | 0 | 619,520,000 | 100% | ||
hodo | 0 | 619,520,000 | 100% | ||
runnyeggs | 0 | 605,285,888 | 100% | ||
lisaocampo | 0 | 72,262,956,154 | 100% | ||
hasoon | 0 | 4,416,695,956,640 | 100% | ||
zeidlitwhips | 0 | 2,187,267,826 | 100% | ||
steemitcurator | 0 | 870,469,700 | 100% | ||
steemreports | 0 | 32,712,356,342 | 100% | ||
yogevm | 0 | 915,813,043 | 100% | ||
sahal | 0 | 619,520,000 | 100% | ||
summerskin | 0 | 14,271,406,281 | 100% | ||
eyegasm | 0 | 29,654,692,081 | 100% | ||
newalturim | 0 | 9,515,539,261 | 100% | ||
o1o1o1o | 0 | 23,943,234,295 | 100% | ||
hope-on-fire | 0 | 15,822,579,247 | 100% | ||
mateakrnic | 0 | 107,537,500 | 100% | ||
j4y | 0 | 8,228,718,433 | 100% | ||
raybilson | 0 | 260,322,097 | 1% | ||
nextgencast | 0 | 614,860,000 | 100% | ||
netdragonx | 0 | 2,360,992,168 | 100% | ||
sebicas | 0 | 619,520,000 | 100% | ||
buildfreedom | 0 | 16,870,215,942 | 100% | ||
zero2one | 0 | 617,384,623 | 100% | ||
ismuhar300693 | 0 | 310,254,857 | 100% | ||
bostonkreme | 0 | 619,520,000 | 100% | ||
atmauphillips | 0 | 61,952,000 | 10% | ||
harryhoudinei | 0 | 614,500,000 | 100% | ||
ahsansaeed | 0 | 8,906,834,764 | 100% | ||
moroshek | 0 | 619,520,000 | 100% | ||
nafazul | 0 | 485,827,610 | 100% | ||
cain342 | 0 | 614,503,785 | 100% | ||
sahilqazi | 0 | 604,875,600 | 100% | ||
ahtaroo | 0 | 8,453,600,514 | 100% | ||
zolfarin | 0 | 619,520,000 | 100% | ||
ckurtish | 0 | 11,746,821,850 | 100% | ||
zaspoon | 0 | 576,153,600 | 100% | ||
yunt | 0 | 607,129,600 | 100% | ||
jejangkit | 0 | 1,564,397,046 | 100% | ||
prc | 0 | 75,643,490,288 | 100% | ||
tristan.macinnes | 0 | 605,637,100 | 100% | ||
nusefile | 0 | 29,838,187,399 | 100% | ||
jason131 | 0 | 585,758,753 | 100% | ||
hamzabitu | 0 | 597,836,800 | 100% | ||
g0nr0gue | 0 | 2,321,503,988 | 100% | ||
azman | 0 | 1,618,628,546 | 100% | ||
eltomos | 0 | 619,520,000 | 100% | ||
vimukthi | 0 | 335,958,883 | 1% | ||
andriwiranda | 0 | 387,200,000 | 100% | ||
tolkatore | 0 | 16,903,966,289 | 100% | ||
mcastro | 0 | 560,665,600 | 100% | ||
ivoteonheros | 0 | 5,373,505,351 | 7% | ||
duekie | 0 | 137,897,632 | 65.77% | ||
cryptobug | 0 | 516,252,268 | 100% | ||
cyberspace | 0 | 3,254,022,260 | 100% | ||
cogitoergosum1 | 0 | 450,507,633 | 100% | ||
sim31 | 0 | 605,637,100 | 100% | ||
sweety170 | 0 | 515,378,700 | 100% | ||
cryptomarketguru | 0 | 617,220,000 | 100% | ||
jonpopa | 0 | 617,220,000 | 100% | ||
jaca | 0 | 212,675,006 | 100% | ||
chatziva | 0 | 619,520,000 | 100% | ||
vegancap | 0 | 2,141,090,759 | 100% | ||
firman.alehba | 0 | 98,327,160 | 100% | ||
z0rn | 0 | 1,151,071,937 | 100% | ||
onyi | 0 | 372,645,071 | 100% | ||
medicbtom | 0 | 671,910,797 | 100% | ||
alexito | 0 | 414,203,509 | 100% | ||
mirainikki | 0 | 620,589,249 | 100% | ||
sayembara | 0 | 0 | 100% | ||
joroderick | 0 | 2,656,524,394 | 100% | ||
an-di | 0 | 622,235,110 | 100% | ||
robbo878 | 0 | 614,503,440 | 100% | ||
natalii46 | 0 | 588,404,766 | 100% | ||
lisajohnn | 0 | 122,971,999 | 20% | ||
imuandwhaticisme | 0 | 613,324,800 | 100% | ||
jakmann | 0 | 194,071,146 | 100% | ||
iksvitzer | 0 | 59,583,097,243 | 100% | ||
mohammad32 | 0 | 6,569,052,123 | 100% | ||
shaunferns | 0 | 307,660,000 | 50% | ||
mdjurek | 0 | 616,422,400 | 100% | ||
mmcs | 0 | 622,347,232 | 100% | ||
nancie | 0 | 999,926,166 | 100% | ||
agentzero | 0 | 581,477,400 | 100% | ||
lyxng | 0 | 2,631,698,888 | 100% | ||
akhilvamangari | 0 | 546,239,700 | 100% | ||
minecrew | 0 | 584,554,000 | 100% | ||
turymenecier | 0 | 52,354,512 | 30% | ||
research-mind | 0 | 6,281,727,182 | 100% | ||
renijuliani | 0 | 234,684,782 | 100% | ||
fiber.god | 0 | 1,114,666,261 | 100% | ||
all-aceh | 0 | 904,382,694 | 100% | ||
blocs | 0 | 617,999,644 | 100% | ||
carlospresley | 0 | 596,371,744 | 100% | ||
bvillagran | 0 | 608,083,646 | 100% | ||
arrkiin | 0 | 16,204,018,658 | 100% | ||
samuraiz | 0 | 617,220,000 | 100% | ||
guggerf | 0 | 1,914,415,227 | 100% | ||
flashsolver | 0 | 617,220,000 | 100% | ||
myanies | 0 | 606,971,335 | 100% | ||
savest | 0 | 2,359,902,843 | 100% | ||
teleandr | 0 | 557,161,503 | 100% | ||
bogh | 0 | 605,321,282 | 100% | ||
airwavez | 0 | 70,766,527 | 25% | ||
arshadsayed | 0 | 553,150,527 | 100% | ||
humanabstract | 0 | 2,855,752,097 | 100% | ||
agmontpetit | 0 | 617,220,000 | 100% | ||
skull1 | 0 | 604,032,304 | 100% | ||
jiminykricket | 0 | 3,620,932,561 | 100% | ||
mawarlinda | 0 | 593,783,800 | 100% | ||
olav | 0 | 617,220,000 | 100% | ||
salah3 | 0 | 259,232,400 | 100% | ||
jaichai | 0 | 0 | 100% | ||
raindrops | 0 | 385,445,946 | 100% | ||
nalgene | 0 | 5,399,446,162 | 100% | ||
pankajsethi001 | 0 | 617,220,000 | 100% | ||
angelol | 0 | 7,275,336,209 | 100% | ||
outwalking | 0 | 296,953,402 | 16% | ||
xhliu | 0 | 0 | 100% | ||
scottisatthepool | 0 | 0 | 100% | ||
darylsid11 | 0 | 213,014,026 | 100% | ||
arifien | 0 | 549,325,800 | 100% | ||
lambchop666 | 0 | 1,379,715,571 | 100% | ||
zachlevet | 0 | 0 | 100% | ||
pantoranews | 0 | 613,850,499 | 100% | ||
blamebauer | 0 | 1,405,853,390 | 100% | ||
abuyeti | 0 | 4,981,701,719 | 100% | ||
n00th3r | 0 | 617,220,000 | 100% | ||
bibzsteemit | 0 | 549,325,800 | 100% | ||
bdonovan | 0 | 0 | 100% | ||
m-i-k-e | 0 | 2,284,382,036 | 100% | ||
tanya135 | 0 | 603,294,862 | 100% | ||
sci-fi-hi | 0 | 21,119,724,139 | 50% | ||
carhound | 0 | 615,320,000 | 100% | ||
melonman0 | 0 | 10,158,549,691 | 100% | ||
callmetoxy | 0 | 0 | 100% | ||
shihu4937 | 0 | 3,472,994,058 | 100% | ||
nicholas83 | 0 | 909,201,390 | 100% | ||
mrblaker | 0 | 6,786,601,121 | 100% | ||
uscfhq | 0 | 473,142,468 | 100% | ||
fojanlopez | 0 | 604,875,600 | 100% | ||
ahmed321 | 0 | 436,586,052 | 100% | ||
prosieben | 0 | 615,320,000 | 100% | ||
irene21 | 0 | 355,587,935 | 100% | ||
kanchana | 0 | 0 | 100% | ||
idlebright | 0 | 5,740,840,064 | 100% | ||
anuzis | 0 | 617,220,000 | 100% | ||
brandon-staab | 0 | 608,529,155 | 100% | ||
ruthlesspunt | 0 | 617,240,000 | 100% | ||
yusf | 0 | 59,142,141 | 100% | ||
rawzen | 0 | 615,320,000 | 100% | ||
jamaluddin96 | 0 | 577,465,691 | 100% | ||
basant89 | 0 | 558,584,100 | 100% | ||
ksz2k | 0 | 617,220,000 | 100% | ||
numerus | 0 | 617,425,516 | 100% | ||
markwu | 0 | 617,692,258 | 100% | ||
masrureus | 0 | 608,427,011 | 100% | ||
phreakerx | 0 | 0 | 0% | ||
dekyan94 | 0 | 603,013,600 | 100% | ||
sahriarragib | 0 | 342,568,200 | 100% | ||
swissman | 0 | 617,240,000 | 100% | ||
amelia72 | 0 | 570,346,081 | 100% | ||
profithouse | 0 | 2,373,806,611 | 100% | ||
emade | 0 | 123,448,000 | 20.75% | ||
marcohernandez98 | 0 | 498,175,979 | 100% | ||
naku94 | 0 | 614,500,000 | 100% | ||
seanlloyd | 0 | 32,097,611,801 | 100% | ||
silovar88 | 0 | 495,468,422 | 100% | ||
rowoth | 0 | 293,189,000 | 100% | ||
bitpivot | 0 | 617,240,000 | 100% | ||
brandondickey | 0 | 617,240,000 | 100% | ||
gtrussi | 0 | 5,919,088,233 | 100% | ||
dcherna | 0 | 203,689,200 | 100% | ||
nick300 | 0 | 0 | 100% | ||
dhouse | 0 | 4,455,592,926 | 100% | ||
lloydrough | 0 | 964,462,419 | 100% | ||
preciousmettle-x | 0 | 998,653,233 | 100% | ||
uniquecosmos | 0 | 1,315,340,237 | 100% | ||
christiaan.pauw | 0 | 615,320,000 | 100% | ||
jose9955 | 0 | 1,435,260,213 | 100% | ||
muntasirramli | 0 | 615,320,000 | 100% | ||
lmx3881 | 0 | 252,314,799 | 100% | ||
rjmohsin | 0 | 602,373,827 | 100% | ||
jerzy | 0 | 16,878,337,933 | 100% | ||
robinsonlx | 0 | 559,941,200 | 100% | ||
tshore626 | 0 | 317,757,480 | 100% | ||
crudeoiltrader | 0 | 0 | 100% | ||
thehodler | 0 | 604,058,579 | 100% | ||
good-news | 0 | 615,320,000 | 100% | ||
carlos-farias | 0 | 422,246,711 | 100% | ||
vnyrox | 0 | 596,472,832 | 100% | ||
munazaky | 0 | 615,361,025 | 100% | ||
nikulinsb | 0 | 578,400,800 | 100% | ||
simspread | 0 | 356,260,353 | 100% | ||
slalmali123 | 0 | 401,477,042 | 100% | ||
shallwey | 0 | 489,569,351 | 100% | ||
jusdev89 | 0 | 594,851,787 | 100% | ||
haritha78 | 0 | 430,724,000 | 100% | ||
frankyboy | 0 | 195,840,987 | 100% | ||
braininteractive | 0 | 615,320,000 | 100% | ||
muhammadalhafiz | 0 | 529,280,912 | 100% | ||
narwhal | 0 | 591,257,984 | 100% | ||
pnutbrand | 0 | 285,026,452 | 100% | ||
imam-nazar | 0 | 0 | 0% | ||
ceattlestretch | 0 | 2,300,836,218 | 11% | ||
allaboutlife | 0 | 615,320,000 | 100% | ||
zeewyr | 0 | 477,764,269 | 100% | ||
wizarty | 0 | 7,752,431,290 | 100% | ||
gateauxderiz | 0 | 593,783,800 | 100% | ||
hendri.aceh | 0 | 958,163,034 | 100% | ||
juanzam | 0 | 581,477,400 | 100% | ||
zeroicanime | 0 | 209,515,476 | 100% | ||
rojinstha13 | 0 | 440,312,654 | 100% | ||
zackdwales | 0 | 615,320,000 | 100% | ||
deanhass | 0 | 20,622,506,141 | 100% | ||
boladunia | 0 | 436,906,356 | 100% | ||
teamfed | 0 | 1,068,469,850 | 100% | ||
juanyao | 0 | 942,579,630 | 100% | ||
micika987 | 0 | 3,580,410,541 | 100% | ||
business.quotes | 0 | 547,634,800 | 100% | ||
taufit333 | 0 | 262,358,867 | 100% | ||
peterbuddy933 | 0 | 943,628,267 | 100% | ||
irislali | 0 | 10,025,660,819 | 100% | ||
chandanbs | 0 | 0 | 0% | ||
slygag | 0 | 9,786,190,422 | 100% | ||
miguelrys1 | 0 | 402,497,500 | 100% | ||
bonjovis | 0 | 12,939,731,885 | 50% | ||
hilesfiles | 0 | 1,255,673,731 | 100% | ||
newscrypto | 0 | 77,217,393 | 100% | ||
jinzo | 0 | 1,802,517,744 | 100% | ||
waltchack | 0 | 615,320,000 | 100% | ||
eudaimoniaa | 0 | 606,090,200 | 100% | ||
giovannicic | 0 | 0 | 100% | ||
lallto777 | 0 | 461,490,000 | 100% | ||
sanif | 0 | 455,397,471 | 100% | ||
ethoss | 0 | 542,203,452 | 100% | ||
patrickzhou | 0 | 7,346,677,629 | 100% | ||
crazyfishman | 0 | 641,809,729 | 100% | ||
elzaevtimova | 0 | 0 | 0% | ||
h4ck3rm1k3st33m | 0 | 1,063,269,038 | 100% | ||
omarid | 0 | 144,609,843 | 100% | ||
nelkeljdm | 0 | 3,055,488,549 | 15% | ||
blockstreet.info | 0 | 615,320,000 | 100% | ||
weiching | 0 | 1,491,890,259 | 1% | ||
nosimpler | 0 | 615,320,000 | 100% | ||
buffalo-soldier | 0 | 1,049,912,846 | 100% | ||
danibehram | 0 | 171,345,203 | 100% | ||
chadmhohn | 0 | 615,320,000 | 100% | ||
luoq | 0 | 62,005,411,797 | 100% | ||
blackboxcrypto | 0 | 615,320,000 | 100% | ||
timmay4life | 0 | 615,320,000 | 100% | ||
hieudaigia | 0 | 615,320,000 | 100% | ||
daltono | 0 | 5,695,167,784 | 100% | ||
ernieg | 0 | 615,320,000 | 100% | ||
dinobot | 0 | 0 | 100% | ||
beingbetter | 0 | 818,243,011 | 100% | ||
cromulentgamer | 0 | 0 | 0% | ||
blackfisen | 0 | 606,090,200 | 100% | ||
fabiopsousa | 0 | 615,320,000 | 100% | ||
bgreco90 | 0 | 2,713,777,784 | 100% | ||
animefanrd | 0 | 569,398,469 | 100% | ||
piershampton | 0 | 0 | 100% | ||
mossmanpete | 0 | 605,286,229 | 100% | ||
krishnasriram | 0 | 0 | 100% | ||
muadzis | 0 | 203,055,600 | 100% | ||
caliterpz420 | 0 | 3,760,925,729 | 100% | ||
maovader888 | 0 | 189,859,046 | 100% | ||
anonymslibertas | 0 | 0 | 100% | ||
wallop | 0 | 607,988,486 | 100% | ||
epshare | 0 | 557,050,070 | 100% | ||
ddarker | 0 | 884,303,783 | 100% | ||
dianemarra | 0 | 6,426,684,365 | 100% | ||
smn | 0 | 0 | -100% | ||
kabessa | 0 | 615,320,000 | 100% | ||
jerrygoha | 0 | 615,320,000 | 100% | ||
linkonsaha31 | 0 | 173,506,063 | 100% | ||
schuwall | 0 | 490,021,465 | 100% | ||
nageshwar0369 | 0 | 165,782,123 | 100% | ||
mikefromtheuk | 0 | 251,034,875 | 100% | ||
saisrinathreddy | 0 | 338,426,000 | 100% | ||
seunfola | 0 | 505,092,487 | 100% | ||
gb25 | 0 | 615,351,789 | 100% | ||
b-2 | 0 | 615,320,000 | 100% | ||
najar10791 | 0 | 454,996,400 | 100% | ||
gregoryp | 0 | 614,860,000 | 100% | ||
bb-96 | 0 | 368,940,591 | 100% | ||
shirtandtie | 0 | 614,860,000 | 100% | ||
radiobb | 0 | 2,167,448,347 | 100% | ||
hayzed | 0 | 526,090,939 | 100% | ||
ersulba | 0 | 664,265,352 | 100% | ||
zakro | 0 | 528,779,600 | 100% | ||
nsikakaaron | 0 | 593,339,900 | 100% | ||
minjunpark | 0 | 1,169,990,165 | 100% | ||
orianarosales | 0 | 1,166,986,212 | 100% | ||
gonzoduke | 0 | 614,860,000 | 100% | ||
blockpanda | 0 | 614,860,000 | 100% | ||
porktank | 0 | 614,860,000 | 100% | ||
shahidali | 0 | 893,590,722 | 100% | ||
tfloyd | 0 | 581,042,700 | 100% | ||
shxne7 | 0 | 614,860,000 | 100% | ||
nuridin | 0 | 591,436,467 | 100% | ||
intgro | 0 | 614,860,000 | 100% | ||
godratio | 0 | 614,860,000 | 100% | ||
jccalva1 | 0 | 603,647,443 | 100% | ||
ziyzhou | 0 | 519,556,700 | 100% | ||
jona12 | 0 | 1,106,266,875 | 100% | ||
bigjosh | 0 | 313,396,930 | 100% | ||
masasender | 0 | 200,152,354 | 100% | ||
aistis | 0 | 95,379,517 | 100% | ||
ahmetka | 0 | 615,351,741 | 100% | ||
adamsteem | 0 | 1,586,670,855 | 100% | ||
gesteban7 | 0 | 614,860,000 | 100% | ||
realfahd | 0 | 595,222,748 | 100% | ||
nhutle | 0 | 602,562,800 | 100% | ||
rhondel | 0 | 455,420,965 | 100% | ||
orderworldnew | 0 | 584,117,000 | 100% | ||
mrdupin | 0 | 606,008,825 | 100% | ||
minigunner | 0 | 596,573,215 | 100% | ||
farah-kamran | 0 | 181,411,550 | 100% | ||
pittyright | 0 | 284,042,411 | 100% | ||
steem82 | 0 | 242,720,418 | 100% | ||
waltliquor | 0 | 172,390,326 | 100% | ||
muhamad | 0 | 0 | 0% | ||
dwainus | 0 | 17,721,134,260 | 100% | ||
rishabhp | 0 | 602,924,278 | 100% | ||
auracraft | 0 | 840,427,121 | 100% | ||
carllloyd | 0 | 332,754,662 | 100% | ||
lcdoreyes | 0 | 1,119,884,688 | 100% | ||
darwinmaas | 0 | 391,008,556 | 100% | ||
vonbuelo | 0 | 510,333,800 | 100% | ||
joncg | 0 | 614,860,000 | 100% | ||
jemi | 0 | 267,035,201 | 41.69% | ||
citypass | 0 | 602,602,972 | 100% | ||
smartin777 | 0 | 593,339,900 | 100% | ||
syarkawiblc89 | 0 | 445,803,219 | 100% | ||
creamer7 | 0 | 599,488,500 | 100% | ||
anthonycruddas | 0 | 602,562,800 | 100% | ||
badmusgreene | 0 | 334,146,748 | 100% | ||
horlly1 | 0 | 547,225,400 | 100% | ||
alputhi09 | 0 | 90,075,753 | 100% | ||
jkhoffman | 0 | 605,637,100 | 100% | ||
destalonica | 0 | 614,860,000 | 100% | ||
zagir-gatin | 0 | 1,160,499,572 | 100% | ||
mf93 | 0 | 458,925,586 | 100% | ||
charmsantos | 0 | 350,366,881 | 100% | ||
shamshad2000 | 0 | 273,612,700 | 100% | ||
eosgo | 0 | 294,263,162 | 100% | ||
cesareur88 | 0 | 297,433,888 | 100% | ||
stanley.steemit | 0 | 617,073,138 | 100% | ||
ligarayk | 0 | 245,944,000 | 100% | ||
green.abundance | 0 | 594,367,962 | 100% | ||
bitconsulting | 0 | 106,128,493 | 100% | ||
hernach | 0 | 584,117,000 | 100% | ||
musliadiamd | 0 | 485,739,400 | 100% | ||
shofaemily | 0 | 470,367,900 | 100% | ||
epicswarm | 0 | 0 | 100% | ||
alexiii | 0 | 568,745,500 | 100% | ||
auburnnnnn | 0 | -614,860,000 | -100% | ||
alex.welcomes | 0 | 0 | 100% | ||
charlieyou | 0 | 614,860,000 | 100% | ||
a1b2 | 0 | 428,267,554 | 100% | ||
norisv | 0 | 362,815,756 | 100% | ||
architgupta | 0 | 603,044,714 | 100% | ||
burhanhamzam | 0 | 341,247,300 | 100% | ||
enivelo | 0 | 613,089,226 | 100% | ||
navidivine | 0 | 1,050,248,756 | 100% | ||
ronnyche | 0 | 179,542,553 | 100% | ||
greatlife | 0 | 522,518,105 | 100% | ||
mbuanaaji | 0 | 586,194,889 | 100% | ||
mickytony | 0 | 58,178,402 | 100% | ||
thegreattater | 0 | 1,143,370,092 | 100% | ||
kaderusto1 | 0 | 800,854,609 | 100% | ||
shinday | 0 | 1,096,667,725 | 100% | ||
chubzlei09 | 0 | 1,140,712,352 | 100% | ||
maxfg | 0 | 1,160,494,851 | 100% | ||
davestyle | 0 | 976,437,710 | 100% | ||
rachmaddarmawan | 0 | 1,096,667,572 | 100% | ||
jepoy | 0 | 1,160,494,745 | 100% | ||
miguelacho | 0 | 1,098,719,704 | 100% | ||
eric.barrows | 0 | 789,136,372 | 100% | ||
kishoryadav | 0 | 298,391,212 | 100% | ||
emmakwisequote | 0 | 455,188,170 | 100% | ||
fadhlon | 0 | 261,162,500 | 100% | ||
rado-van-hell | 0 | 614,500,000 | 100% | ||
darryldominator | 0 | 127,654,369 | 100% | ||
uimahal7 | 0 | 290,123,546 | 100% | ||
funkysistah | 0 | 1,161,026,832 | 100% | ||
william331069 | 0 | 1,160,494,123 | 100% | ||
johanreporg | 0 | 911,759,770 | 100% | ||
mproxima | 0 | 483,185,180 | 100% | ||
jarradhrotek | 0 | 510,617,275 | 100% | ||
norod | 0 | 614,500,000 | 100% | ||
kwahl14 | 0 | 602,210,000 | 100% | ||
pelayaransamudra | 0 | 98,641,899 | 11.57% | ||
chill-nation | 0 | 1,032,293,883 | 100% | ||
juanchimorata | 0 | 452,592,228 | 100% | ||
juancavillac | 0 | 406,172,511 | 100% | ||
kikiriki | 0 | 736,912,964 | 100% | ||
marval10 | 0 | 655,678,458 | 100% | ||
moneybagsiii | 0 | 667,471,823 | 100% | ||
helleagy | 0 | 1,143,085,392 | 100% | ||
esakhan | 0 | 835,554,763 | 100% | ||
robin11 | 0 | 1,119,875,451 | 100% | ||
energyaddict22 | 0 | 1,242,528,644 | 100% | ||
peeyush | 0 | 110,375,231 | 100% | ||
bitbe | 0 | 0 | 100% | ||
kyndyz | 0 | 52,222,157 | 100% | ||
derbeder | 0 | 1,137,282,493 | 100% | ||
htphuc | 0 | 1,137,281,863 | 100% | ||
secretcrypto | 0 | 0 | 0% | ||
chideramalachy | 0 | 172,369,675 | 100% | ||
maitemarcano02 | 0 | 208,888,356 | 100% | ||
jackoflies | 0 | 800,738,615 | 100% | ||
cryptostoner | 0 | 864,565,307 | 100% | ||
lordprime | 0 | 0 | 100% | ||
volcom | 0 | 922,589,258 | 100% | ||
dhkang34 | 0 | 1,160,489,632 | 100% | ||
shimbo | 0 | 1,160,489,608 | 100% | ||
pierrebailey | 0 | 0 | 0% | ||
calang | 0 | 1,085,057,774 | 100% | ||
diegoalvarez02 | 0 | 905,181,881 | 100% | ||
dhairesheel | 0 | 1,137,279,793 | 100% | ||
youtubeshare | 0 | 226,295,463 | 100% | ||
ultimatetrader | 0 | 602,178,642 | 100% | ||
viinamari | 0 | 1,137,279,722 | 100% | ||
tacit | 0 | 574,442,303 | 100% | ||
michaelakintola | 0 | 291,887,500 | 100% | ||
soundsofleche | 0 | 1,160,489,476 | 100% | ||
kacpersky | 0 | 534,615,000 | 100% | ||
lele-venturi | 0 | 119,827,500 | 100% | ||
ichimoku | 0 | 0 | 100% | ||
efrelen | 0 | 655,676,535 | 100% | ||
amosgreen | 0 | 905,373,465 | 100% | ||
d-stepnoy | 0 | 684,688,703 | 100% | ||
leoh | 0 | 609,256,889 | 100% | ||
dcj | 0 | 446,788,379 | 100% | ||
dawsansan | 0 | 1,137,279,484 | 100% | ||
abohlund | 0 | 1,160,489,266 | 100% | ||
loveyo | 0 | 75,431,800 | 100% | ||
mckibbinusa | 0 | 992,218,128 | 100% | ||
z0ri0 | 0 | 1,160,489,011 | 100% | ||
snirmachluf | 0 | 1,160,489,009 | 100% | ||
palik | 0 | 1,143,081,541 | 100% | ||
liquitrix | 0 | 614,500,000 | 100% | ||
cryptocamelcow | 0 | 1,119,871,638 | 100% | ||
tjohan | 0 | 214,690,380 | 100% | ||
iamdrock | 0 | 0 | 100% | ||
sumitj | 0 | 1,160,488,347 | 100% | ||
igor125v | 0 | 777,527,188 | 100% | ||
davoskygud | 0 | 276,525,000 | 100% | ||
healthy-life | 0 | 1,160,488,284 | 100% | ||
lin1234 | 0 | 696,292,964 | 100% | ||
pedrobenamor | 0 | 1,038,637,003 | 100% | ||
ikemesit | 0 | 504,812,394 | 100% | ||
cerenselenapa | 0 | 1,003,822,348 | 100% | ||
craigmeister | 0 | 537,687,500 | 100% | ||
mrchull | 0 | 1,119,871,150 | 100% | ||
kailukat | 0 | 516,417,265 | 100% | ||
douzzy | 0 | 777,527,117 | 100% | ||
kishoremd | 0 | 301,726,940 | 100% | ||
dashdipak | 0 | 307,529,376 | 100% | ||
magnusm | 0 | 928,390,570 | 100% | ||
gakimov | 0 | 673,083,162 | 100% | ||
neoptolemo | 0 | 1,160,488,205 | 100% | ||
akritrime | 0 | 591,848,981 | 100% | ||
beckysophie | 0 | 876,168,590 | 100% | ||
kalmer | 0 | 823,946,595 | 100% | ||
ucathy | 0 | 1,160,488,157 | 100% | ||
gresstyle | 0 | 771,724,620 | 100% | ||
snowice | 0 | 649,873,362 | 100% | ||
manolo92 | 0 | 417,775,720 | 100% | ||
fersik | 0 | 731,107,509 | 100% | ||
josephweller | 0 | 0 | 100% | ||
regalsoldier | 0 | 203,085,406 | 100% | ||
mrerolos | 0 | 696,292,812 | 100% | ||
moisesguerrero | 0 | 731,107,441 | 100% | ||
vicrivasr | 0 | 1,119,870,921 | 100% | ||
cmitl | 0 | 789,298,908 | 100% | ||
zelenicic | 0 | 284,319,525 | 100% | ||
jovanivega | 0 | 452,590,230 | 100% | ||
yaniecyag | 0 | 777,526,798 | 100% | ||
wk93 | 0 | 405,748,291 | 100% | ||
kanati | 0 | 1,143,080,402 | 100% | ||
inkworker | 0 | 1,119,870,385 | 100% | ||
twitchmoments | 0 | 562,836,353 | 100% | ||
rijalsaugat75 | 0 | 448,587,511 | 100% | ||
ocwirk | 0 | 602,210,000 | 100% | ||
ryans | 0 | 1,027,030,797 | 100% | ||
emmanuelle23 | 0 | 0 | 0% | ||
rimbaudiii | 0 | 281,097,236 | 100% | ||
prashanthagowda | 0 | 1,160,486,534 | 100% | ||
mbitbb | 0 | 1,160,486,497 | 100% | ||
emilysengmein | 0 | 615,057,825 | 54.59% | ||
balyan.elpete | 0 | 244,604,874 | 100% | ||
gkozlyk | 0 | 1,160,486,099 | 100% | ||
rajateguh10 | 0 | 435,182,287 | 100% | ||
weekendwarlord | 0 | 1,160,486,094 | 100% | ||
yusufpacaci | 0 | 1,137,276,367 | 100% | ||
by4434 | 0 | 928,388,864 | 100% | ||
helio | 0 | 592,992,500 | 100% | ||
ashleedraheim | 0 | 230,437,500 | 100% | ||
hustleh | 0 | 0 | 0% | ||
hannanh | 0 | 1,119,869,057 | 100% | ||
yanniku | 0 | 0 | 0% | ||
furly | 0 | 1,137,276,340 | 100% | ||
cedru | 0 | 1,119,869,049 | 100% | ||
obial | 0 | 1,119,869,049 | 100% | ||
krav | 0 | 831,639,989 | 100% | ||
saifulke | 0 | 690,489,203 | 100% | ||
maurizio77 | 0 | 1,096,659,320 | 100% | ||
agusrizal12 | 0 | 1,160,486,053 | 100% | ||
munadi | 0 | 1,119,869,041 | 100% | ||
officialtomo | 0 | 1,160,486,052 | 100% | ||
davidluiz957 | 0 | 374,845,000 | 100% | ||
laserdos | 0 | 1,015,425,293 | 100% | ||
gelperwer | 0 | 1,050,239,870 | 100% | ||
rongabby | 0 | 1,160,486,043 | 100% | ||
miftahulzanahdm | 0 | 1,137,276,322 | 100% | ||
crypticalias | 0 | 876,166,962 | 100% | ||
azharihasansteem | 0 | 0 | 100% | ||
imex08 | 0 | 1,050,239,867 | 100% | ||
karderick | 0 | 1,160,486,041 | 100% | ||
agiotita | 0 | 1,160,486,039 | 100% | ||
deterider | 0 | 939,993,691 | 100% | ||
riddlore | 0 | 301,726,368 | 100% | ||
onlyresteemnopts | 0 | 1,137,276,311 | 100% | ||
wargliis | 0 | 939,993,685 | 100% | ||
mohamed1983 | 0 | 1,096,659,298 | 100% | ||
mohsin-sk | 0 | 1,160,486,028 | 100% | ||
asimnk | 0 | 1,096,659,295 | 100% | ||
arunn | 0 | 1,160,486,024 | 100% | ||
gh0stfunk | 0 | 1,102,461,718 | 100% | ||
ssbonev | 0 | 934,191,244 | 100% | ||
skydz | 0 | 1,160,486,016 | 100% | ||
edwin77 | 0 | 1,160,486,011 | 100% | ||
edragone | 0 | 957,400,958 | 100% | ||
thefixeroff | 0 | 725,303,755 | 100% | ||
kyawwannahtoo | 0 | 1,137,276,288 | 100% | ||
summontoast | 0 | 1,160,486,008 | 100% | ||
rajafahad | 0 | 429,379,822 | 100% | ||
goldenbuoy | 0 | 1,119,868,993 | 100% | ||
inapf | 0 | 1,160,486,002 | 100% | ||
shubhan | 0 | 1,137,276,280 | 100% | ||
joseealvarezn | 0 | 147,480,000 | 100% | ||
mahmudkandi | 0 | 1,027,030,104 | 100% | ||
joseangelchavez | 0 | 1,137,276,268 | 100% | ||
chuobejarano | 0 | 1,119,868,977 | 100% | ||
tomas95 | 0 | 847,154,765 | 100% | ||
rezten11 | 0 | 1,160,485,975 | 100% | ||
gforg | 0 | 325,685,000 | 100% | ||
yogalight | 0 | 1,056,042,233 | 100% | ||
medical420 | 0 | 1,143,078,679 | 100% | ||
azharie | 0 | 0 | 100% | ||
budokan | 0 | 0 | -100% | ||
nesim | 0 | 1,032,832,497 | 100% | ||
mr-martin | 0 | 1,160,485,948 | 100% | ||
pavoreal | 0 | 556,122,500 | 100% | ||
krujohn28 | 0 | 1,137,276,213 | 100% | ||
jbeguna04 | 0 | 835,549,866 | 100% | ||
classiccars | 0 | -1,137,276,190 | -100% | ||
mairontiisler | 0 | 1,137,276,187 | 100% | ||
nugget7378 | 0 | 1,160,485,900 | 100% | ||
woses | 0 | 586,045,377 | 100% | ||
twocoins | 0 | 614,500,000 | 100% | ||
angelui22 | 0 | 905,178,992 | 100% | ||
clubdevil | 0 | 1,160,485,888 | 100% | ||
aridamus | 0 | 481,601,643 | 100% | ||
prayer11 | 0 | 1,015,425,150 | 100% | ||
ebris | 0 | 1,160,485,874 | 100% | ||
cryptomall | 0 | 1,032,832,420 | 100% | ||
victornor | 0 | 1,160,485,848 | 100% | ||
littlelobo | 0 | 1,160,485,826 | 100% | ||
acushla | 0 | 1,119,868,822 | 100% | ||
jaysoncabuyao | 0 | 1,137,276,099 | 100% | ||
plasmachicken | 0 | 1,021,227,516 | 100% | ||
xbenchmark | 0 | 1,032,832,368 | 100% | ||
albertools | 0 | 1,119,868,799 | 100% | ||
vlasnius | 0 | 0 | 0% | ||
mascaraz | 0 | 847,154,623 | 100% | ||
fabianbtc | 0 | 220,492,296 | 100% | ||
sebaztian | 0 | 864,561,892 | 100% | ||
blueinvest | 0 | 0 | 0% | ||
chrisvan | 0 | 1,148,880,891 | 100% | ||
grimreaper711 | 0 | 1,160,485,737 | 100% | ||
mindcombustion | 0 | 546,905,000 | 100% | ||
killaform | 0 | 760,118,141 | 100% | ||
gilbertogomez | 0 | 1,015,424,983 | 100% | ||
vincentivangogh | 0 | 852,956,940 | 100% | ||
yinpinp | 0 | 742,710,792 | 100% | ||
brozki | 0 | 1,009,622,475 | 100% | ||
arslan237 | 0 | 945,795,767 | 100% | ||
huyenmy | 0 | 829,747,194 | 100% | ||
godssalad | 0 | 1,160,485,576 | 100% | ||
kangsungjun | 0 | 858,759,292 | 100% | ||
distinctvec | 0 | 771,722,876 | 100% | ||
darkpylon | 0 | 53,467,147 | 100% | ||
btc2me | 0 | 1,073,449,073 | 100% | ||
budipratama | 0 | 1,137,275,768 | 100% | ||
besokuse | 0 | 1,160,485,461 | 100% | ||
markothegreat | 0 | 1,160,485,440 | 100% | ||
rinsky | 0 | 1,160,485,432 | 100% | ||
lexyflexy | 0 | 1,119,868,438 | 100% | ||
awan201175 | 0 | 742,710,670 | 100% | ||
islamkha | 0 | 934,190,756 | 100% | ||
sergey23 | 0 | 1,119,868,411 | 100% | ||
evegorilla | 0 | 1,096,658,629 | 100% | ||
nicholasleeson | 0 | 1,143,078,034 | 100% | ||
jaydoublu | 0 | 1,160,485,294 | 100% | ||
pro-stemmer | 0 | 1,032,831,900 | 100% | ||
rijad | 0 | 1,143,077,988 | 100% | ||
ismailali | 0 | 1,160,485,267 | 100% | ||
thegje | 0 | 0 | 100% | ||
yechengfang | 0 | 1,160,485,248 | 100% | ||
onepunchass | 0 | 934,190,610 | 100% | ||
marketstack | 0 | 1,131,473,065 | 0% | ||
michaelhodges | 0 | 614,500,000 | 100% | ||
cossel-log | 0 | 429,379,515 | 100% | ||
joserodulfo | 0 | 777,525,064 | 100% | ||
empereur | 0 | 1,073,448,781 | 100% | ||
ericzenn | 0 | 986,412,378 | 100% | ||
unersetzlich | 0 | 1,119,868,169 | 100% | ||
handresk | 0 | 783,327,448 | 100% | ||
pipixia | 0 | 573,069,649 | 100% | ||
jwilkie31 | 0 | 1,102,460,808 | 100% | ||
luvshani | 0 | 1,160,485,009 | 100% | ||
myus | 0 | 591,847,344 | 100% | ||
netskyy | 0 | 1,143,077,714 | 100% | ||
hormen69 | 0 | 812,339,429 | 100% | ||
rockangels | 0 | 1,096,658,107 | 100% | ||
peniel20 | 0 | 1,119,867,734 | 100% | ||
richman42 | 0 | 1,160,484,669 | 100% | ||
winoxez | 0 | 1,119,867,695 | 100% | ||
khazilaidris | 0 | 67,595,000 | 100% | ||
isorne022 | 0 | 1,119,867,577 | 100% | ||
ziyaul | 0 | 1,119,867,573 | 100% | ||
danishmobeen | 0 | 1,119,867,521 | 100% | ||
login1121 | 0 | 1,137,274,743 | 100% | ||
kwin614 | 0 | 1,160,484,377 | 100% | ||
orst | 0 | 1,137,274,626 | 100% | ||
ukup | 0 | 70,667,500 | 100% | ||
nabin1994 | 0 | 1,119,867,254 | 100% | ||
ronildo | 0 | 614,500,000 | 100% | ||
yuyuhamann | 0 | 1,073,447,877 | 100% | ||
brandonstreet | 0 | 1,119,867,243 | 100% | ||
samman | 0 | 1,096,657,555 | 100% | ||
tkn | 0 | 1,160,484,185 | 100% | ||
natashanelson | 0 | 957,399,449 | 100% | ||
urros | 0 | 1,160,484,119 | 100% | ||
yosohaso | 0 | 580,702,500 | 100% | ||
minayapunto5 | 0 | 934,189,714 | 100% | ||
muzquiz | 0 | 463,947,500 | 100% | ||
paulmadean | 0 | 1,119,867,170 | 100% | ||
dirman01 | 0 | 1,119,867,167 | 100% | ||
sridatta | 0 | 304,177,500 | 100% | ||
mister-e-concept | 0 | 1,143,076,848 | 100% | ||
darkdanza | 0 | 992,213,913 | 100% | ||
bitmetal | 0 | 1,050,238,114 | 100% | ||
viguro | 0 | 282,670,000 | 100% | ||
overwatchguy | 0 | 1,119,867,158 | 100% | ||
avanggers | 0 | 1,096,657,464 | 100% | ||
jehanzebkhan | 0 | 175,132,500 | 100% | ||
la7me | 0 | 626,661,404 | 100% | ||
johnsnowdat | 0 | 1,160,484,079 | 100% | ||
habasstunde1000 | 0 | 1,073,447,760 | 100% | ||
buufuu | 0 | 87,036,304 | 100% | ||
bizgi | 0 | 0 | 0% | ||
suniljaiswal21 | 0 | 602,210,000 | 100% | ||
januarabd | 0 | 0 | 0% | ||
cryptominute | 0 | 1,096,657,378 | 100% | ||
memestalk | 0 | 1,050,238,004 | 100% | ||
smartbcamp | 0 | 568,412,500 | 100% | ||
mememetics | 0 | 812,338,776 | 100% | ||
bozz | 0 | 121,060,162 | 100% | ||
totocoin | 0 | 0 | 0% | ||
tamhunt | 0 | 1,143,076,666 | 100% | ||
jenniferochiotu | 0 | 1,143,076,626 | 100% | ||
lasta | 0 | 661,475,777 | 100% | ||
vincentb | 0 | 1,160,483,805 | 100% | ||
squidgod | 0 | 1,044,435,396 | 100% | ||
howi | 0 | 1,143,076,513 | 100% | ||
pedroluis34 | 0 | 934,189,427 | 100% | ||
uchee5314 | 0 | 1,032,830,459 | 100% | ||
maulanabayu | 0 | 1,137,273,919 | 100% | ||
ulilakbar | 0 | 0 | 0% | ||
mutuah | 0 | 1,061,842,467 | 100% | ||
diegosamuel | 0 | 503,893,104 | 100% | ||
allexll | 0 | 78,656,086 | 100% | ||
zeexan | 0 | 1,009,620,414 | 100% | ||
we-media | 0 | 86,029,288 | 100% | ||
zax-teh | 0 | 549,972,948 | 100% | ||
nomaka | 0 | 992,212,946 | 100% | ||
leochatz | 0 | 135,184,932 | 100% | ||
adiber | 0 | 463,900,021 | 100% | ||
yanist0407 | 0 | 0 | 100% | ||
emmanuel.singer | 0 | 0 | 100% | ||
crypt0keepr | 0 | 0 | 100% | ||
mahmoed | 0 | 0 | 100% | ||
mu3rtala | 0 | 0 | 100% | ||
dustelmann | 0 | 0 | 100% | ||
heyyouthere | 0 | 0 | 100% | ||
eddirayrod | 0 | 0 | 100% | ||
boidcom | 0 | 0 | 100% | ||
jungch98 | 0 | 0 | 100% | ||
liar | 0 | 0 | 100% | ||
hartrock11 | 0 | 0 | 100% | ||
greerso | 0 | 0 | 100% | ||
kamov | 0 | 0 | 100% | ||
bardealot | 0 | 0 | 100% | ||
rohitchaubey | 0 | 0 | 100% | ||
spbid | 0 | 0 | -100% | ||
arbit | 0 | 0 | 100% | ||
hackrflov | 0 | 0 | 100% | ||
amitibikram | 0 | 0 | 100% |
I like Steem Dan but you seem salty. Charles has also poked holes in the claims of EOS.
author | adammac |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t130929381z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 13:09:30 |
last_update | 2018-01-06 13:09:30 |
depth | 1 |
children | 9 |
last_payout | 2018-01-13 13:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.270 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 271,546,135,984 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,520,641 |
net_rshares | 29,246,608,934 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
the-ego-is-you | 0 | 29,208,319,460 | 74% | ||
adammac | 0 | -1,723,132,938 | -100% | ||
bbhart | 0 | 600,934,400 | 100% | ||
quantumhealing | 0 | 0 | 100% | ||
jnhmos | 0 | 1,160,488,012 | 100% |
Show me the hole and I’ll plug it.
author | dan |
---|---|
permlink | re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t143411987z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 14:34:12 |
last_update | 2018-01-06 14:34:12 |
depth | 2 |
children | 2 |
last_payout | 2018-01-13 14:34:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.606 HBD |
curator_payout_value | 0.464 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 155,470,101,136,708 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,537,351 |
net_rshares | 213,110,300,404 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
benjojo | 0 | 18,360,196,841 | 100% | ||
johnsmith | 0 | 51,124,178,669 | 100% | ||
the-ego-is-you | 0 | 30,121,079,443 | 74% | ||
markwhittam | 0 | 31,869,542,005 | 1% | ||
ryanprentiss | 0 | 8,060,489,059 | 100% | ||
akrid | 0 | 3,555,421,495 | 100% | ||
sacred-agent | 0 | 23,186,558,341 | 21% | ||
chetwithersby | 0 | 4,799,529,139 | 100% | ||
merkaba | 0 | 619,520,000 | 100% | ||
smiller | 0 | 32,858,373,843 | 15% | ||
michaelmcawesome | 0 | 617,220,000 | 100% | ||
savest | 0 | 2,320,571,129 | 100% | ||
haxxley | 0 | 617,220,000 | 100% | ||
numerus | 0 | 598,902,750 | 100% | ||
ping77 | 0 | 560,053,185 | 100% | ||
hilesfiles | 0 | 1,204,681,904 | 100% | ||
paullintilhac | 0 | 593,783,800 | 100% | ||
tfloyd | 0 | 605,637,100 | 100% | ||
blandrover123 | 0 | 0 | 100% | ||
eosgo | 0 | 294,263,162 | 100% | ||
littlelobo | 0 | 1,143,078,539 | 100% |
Hell yeah! Wish I had enough money in my pocket when @eosio was only trading at $1.65 when I first discovered it following @steem and bought mine. Thank you for creating Steem @dan this gives me an opportunity to be financially independent soon as I establish my profile on the platform. You are the living epitome of techno-social-revolutionary.
author | introvertspeaks |
---|---|
permlink | re-dan-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180107t051619961z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["eosio","steem","dan"],"app":"steemit/0.1"} |
created | 2018-01-07 05:16:18 |
last_update | 2018-01-07 05:16:18 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 05:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.232 HBD |
curator_payout_value | 0.047 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 347 |
author_reputation | -4,351,658,764,138 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,685,653 |
net_rshares | 28,959,484,555 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beanz | 0 | 21,857,887,319 | 1% | ||
introvertspeaks | 0 | 1,236,439,264 | 100% | ||
daltono | 0 | 5,865,157,972 | 100% |
Bam!
author | michaelmcawesome |
---|---|
permlink | re-dan-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t162253715z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 16:22:54 |
last_update | 2018-01-06 16:22:54 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 16: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 | 4 |
author_reputation | 1,403,414,316,595 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,559,824 |
net_rshares | 0 |
@adammac do you realize that you flagged yourself on this post?
author | healthbasics |
---|---|
permlink | re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180108t075109846z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["adammac"],"app":"steemit/0.1"} |
created | 2018-01-08 07:51:06 |
last_update | 2018-01-08 07:51:06 |
depth | 2 |
children | 0 |
last_payout | 2018-01-15 07:51: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 | 63 |
author_reputation | 1,410,280,625,404 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,943,967 |
net_rshares | 0 |
He does seem a bit salty in this post. Have to agree. Seems to be a lot about not getting credit he felt he deserved as much as it is actual problems with Cardano.
author | kafkanarchy84 |
---|---|
permlink | re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t192350910z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 19:23:51 |
last_update | 2018-01-06 19:23:51 |
depth | 2 |
children | 2 |
last_payout | 2018-01-13 19:23: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 | 163 |
author_reputation | 349,526,315,896,646 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,594,755 |
net_rshares | 619,520,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
designer420 | 0 | 619,520,000 | 100% |
He did deserve credit
author | beanz |
---|---|
permlink | re-kafkanarchy84-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180107t122610985z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 12:26:12 |
last_update | 2018-01-07 12:26:12 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 12:26: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 | 21 |
author_reputation | 77,215,574,122,930 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,749,612 |
net_rshares | 0 |
Dan does not care about credit. In the open source community, you should at least acknowledge when you work on top of other's achievements, even if, like Cardano team, you do not bring value to the space by doing so.
author | whyknot |
---|---|
permlink | re-kafkanarchy84-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180108t142252939z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 14:22:54 |
last_update | 2018-01-08 14:22:54 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 14: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 | 216 |
author_reputation | 112,320,686,869 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,014,170 |
net_rshares | 0 |
reference?
author | paullintilhac |
---|---|
permlink | re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t182434517z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 18:24:33 |
last_update | 2018-01-06 18:24:33 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 18:24: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 | 10 |
author_reputation | 38,849,021,305 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,583,364 |
net_rshares | 0 |
Upvoting you just because, as Dan, I would like to see those holes.
author | the-ego-is-you |
---|---|
permlink | re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t185216429z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"community":"busy","app":"busy/2.2.0"} |
created | 2018-01-06 18:52:18 |
last_update | 2018-01-06 18:52:18 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 18:52: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 | 67 |
author_reputation | 7,031,347,556,614 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,588,490 |
net_rshares | 0 |
Need to get more EOS I guess.
author | adityabhat |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t200512794z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 20:05:12 |
last_update | 2018-01-06 20:05:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 20:05: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 | 29 |
author_reputation | 413,674,975,747 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,602,460 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
akshayb | 0 | 0 | 0% |
interensante, no entendi nada, pero no creo que importe. Gracias por el post, saludos!
author | akagiks |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t061822387z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 05:48:00 |
last_update | 2018-01-08 05:48:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 05:48: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 | 86 |
author_reputation | 1,364,772,198 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,925,562 |
net_rshares | 0 |
Apologies I’m late to become aware of this blog and thus am responding late. >### Block Interval > Block interval determines the latency until a transaction is included in the first block. This is the lower-bound on the responsiveness of decentralized applications built on the protocol. Applications like Steem and BitShares are not really viable unless there is low latency and high certainty of finality. > > EOS: 0.5 seconds > Steem/BitShares: 3 seconds > Ouroboros: 20 seconds Actually the block interval for Ouroboros is just a configuration parameter and 20 seconds was just a conservative value and could be decreased if all they wanted to do was run an oligarchy masquerading as a decentralized ledger. I quote [from Reddit](https://www.reddit.com/r/cardano/comments/80wltj/block_time/): > <sup>20 seconds. But it is a simple parameter that can be changed at any time. So if the network is running efficiently at 20 seconds, the block time could be decreased. Charles has made the argument that there is not a need for faster block times until the network begins to scale and real world adoption is becoming a more immediate option.</sup> > <sup>Yes, the block time is a variable parameter that can be changed in Ouroboros. Having block times less then 0.5 seconds would not make sense, since you would be issuing blocks faster than the blocks are able to propagate a global network. See this: https://iohk.io/blog/on-the-ouroboros-design-how-rigour-and-engineering-are-essential-for-critical-infrastructure/</sup> > >> <sup>“Like all other protocols in the blockchain space, Ouroboros requires some degree of synchronisation. The block production interval has to be consistent with the likely time to complete the required information exchanges. The 20-second slot time in Ouroboros represents a conservative choice for a block of transactions to traverse the diameter of a peer-to-peer network […]”</sup> --- > ### Irreversibility > This is how long someone must wait to be certain that a transaction will not be undone by a new/longer fork being released that excludes the transaction. Irreversibility is very important for any multi-step transactions. You don’t want to ship goods until payment is confirmed. You cannot make one trade until the prior trade is locked in. A decentralized exchange is not viable on a platform that has significant latency until irreversibility. > > EOS: <= 2 seconds > Steem/BitShares: <= 45 seconds > Ouroboros: > 5 hours Dan, the above is disingenuous and you must know that by now because we debated this before when [you blogged that response](https://busy.org/exit?url=https%3A%2F%2Fsteemit.com%2Feos%2F%40dan%2Fin-defense-of-consortium-blockchains) to my blog [_“Consortium blockchains” (e.g. DPoS & Tendermint) can’t Internet scale_](https://busy.org/@anonymint/consortium-blockchains-e-g-dpos-and-tendermint-can-t-internet-scale). Also I followed up with [a reply on Medium](https://medium.com/@shelby_78386/hahaha-hes-adding-even-more-centralization-and-making-the-system-more-fragile-and-pushing-it-even-ca4cd95c3fe8) about your recent Youtube and [a more detailed reply](https://medium.com/@shelby_78386/most-of-what-you-have-written-has-been-holistically-refuted-in-my-newest-blog-which-i-plan-to-also-747fcb9f3e6b) to one your shills. Let me fix that for you to be more honest: > | | Oligarchy controlled<br/>block “confirmation” | Byzantine fault tolerant<br/>%100 final irreversibility | > |---:|---|---| > | EOS | 0.5 seconds<br/>(non-antifragile!) | <= 63 seconds | > | Steem/BitShares | 3 seconds | <= 63 seconds | > | DFINITY | ≃3 seconds | ≃10 seconds ideally<br/>highly improbable<br/>worst case ≃1200 seconds | > | Ouroboros | ≃3 seconds | [≃15 seconds ideally](https://cardanodocs.com/cardano/transaction-assurance/)<br/>highly improbable worst<br/>case many hours | The only way that your inept DPoS design can get away with forsaking actual Byzantine fault tolerance (BFT) as it does do, so that it can disingenuously claim finality so quickly, is that all the witnesses must be (and [actually are](https://medium.com/@shunsai.takahashi/proof-of-approval-a-better-blockchain-consensus-protocol-b19a55dc331b#c400)) cooperating as an oligarchy. An _oligarchy controlled_ ledger is [unsuitable for wide deployment](https://steemit.com/cryptocurrency/@anonymint/scaling-decentralization-security-of-distributed-ledgers-part-3) on the Internet as [Steem’s abject failure](https://steemit.com/dlive/@anonymint/re-jerrybanfield-3ffc3520-426a-11e8-836a-b9befc1a6029-20180420t060218449z) has exemplified for example. If DPoS isn’t controlled by oligarchy then any Byzantine witness could attack the liveness of DPOS (i.e. even with less than `⅓` of the witnesses being adversarial), especially with the very small margins of network synchrony bounds required for pushing EOS to the 0.5 second per block latency. But DPoS is [always controlled by an oligarchy because it employs elections](https://medium.com/@shunsai.takahashi/proof-of-approval-a-better-blockchain-consensus-protocol-b19a55dc331b#c400). This is insoluble problem of all extant proof-of-stake systems. [@lichuan](https://bitcointalk.org/index.php?action=profile;u=1687982) recently [recapitulated my point](https://bitcointalk.org/index.php?topic=27787.20#msg40023268) about that: > DPOS has many drawbacks, for example, if a witness node was controlled by a attacker, then the attacker can broadcast many conflicting block with the same block height, in such condition, the whole witness network would be split to many sub-network which are not compatible with each other, at that moment, if the confirmations of these conflicting blocks is less than 2 / 3 of total num of witness, then the whole network would be suspended. you might say that if can not reach 2 / 3, the system has a timeout mechanism, but wait, if system allow one witness produce two height within a small interval, in some network edge conditions, the different witness would generate different [LIB (last irreversible block)](https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper), in a distributed network environment, There is no uniform time and confirmation number. The best latency that could possibly be achieved in a truly BFT design (at least one relying on sequential blocks) would be comparable to [DFINITY which requires](https://steemit.com/cryptocurrency/@anonymint/scaling-decentralization-security-of-distributed-ledgers-part-3) “a few seconds per block” and requires a minimum of two (2) blocks for 100% finality. Also even [your own blog](https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper) has admitted as [recapitulated by your shill](https://medium.com/@shelby_78386/most-of-what-you-have-written-has-been-holistically-refuted-in-my-newest-blog-which-i-plan-to-also-747fcb9f3e6b) that in a Byzantine adversarial model, your design purports to achieve definitive finality only after a super majority of the 21 witnesses issue a descendant block. Thus up to ≃21 blocks which is up to ≃63 seconds for Steem/Bitshares. And again EOS could not have 0.5 second blocks in a true BFT adversarial model, so it would also be up to ≃63 seconds if comparing apples-to-apples. The only reason you can claim ≃21 blocks for irreversibility is because DPoS has elections, but [elections empower an oligarchy](https://medium.com/@shunsai.takahashi/proof-of-approval-a-better-blockchain-consensus-protocol-b19a55dc331b#c400). So it’s disingenuous to compare a system with elections to a system such as Ouroboros or DFINITY which employ randomness to attempt to reduce some of the malevolence that an adversary could do. However even DFINITY relies on permissioned nodes so they don’t actually resolve the problem of needing elections (because staked deposits either aren’t secure and must devolve to an oligarchy or the system dies). And all extant proof-of-stake systems must be oligarchies anyway for reasons that [I explained in my analysis of DFINITY](https://steemit.com/cryptocurrency/@anonymint/scaling-decentralization-security-of-distributed-ledgers-part-3). So this means **the entire comparison of confirmation and irreversibility latency is a red herring**. You’re diverting attention away from the fact that none of the extant proof-of-stake systems are suitable for wide deployment on the Internet. Also it is very important to incorporate [my thoughts about the value and nature of security](https://bitcointalk.org/index.php?topic=4438334.100#msg40437206). And you’re entirely incorrect to insinuate that DPoS can recover easily from the chain being stuck even with perfect network synchrony if `⅓` (or `½` if slashing is added) of the witnesses are adversarial and/or stop responding. That’s the liveness threshold of BFT. But when an oligarchy is in control, then the oligarchy can do whatever it wants, including never allowing the chain to become stuck. Without an oligarchy in control, there’s no objective way for offline nodes to know when a new DPoS election occurred and thus when the faulty witnesses were replaced. If the non-faulty witnesses vote approve the blocks recording the new election, it’s not possible to be sure those non-faulty witness will not become faulty and sign another set of blocks confirming some other election they created in secret. The offline nodes have no objectivity. That is the nothing-at-stake problem of all proof-of-stake systems and TaPoS doesn’t resolve the problem entirely. You go ahead and release EOS inherently flawed as it is, and at the appropriate time I am going to spread the truth far and wide. > ### Ouroboros is Unfit for Decentralized Applications > If we assume Ouroboros is actually “more provably secure” by some definition of secure, it is of little practical value because as specified the security completely compromises the practically. It would be like claiming a bullet proof vest is “provably safe” but it weighs 400 pounds. At some point other factors of system design take priority. > > Unfortunately we cannot simply assume it has been proven secure. I will demonstrate that despite claims to the contrary, Ouroboros is far less secure due to faulty assumptions in its design. I have already shown above that neither EOS nor STEEM are fit for widely deployed decentralized applications. In BFT mode without oligarchy control, they would have 1 minute confirmation speed for each action a user does to interact with the database! Even if you adopted DFINITY’s superior design, you’d still need at least 3 seconds per block confirmation and no less than 6 seconds or more for irreversibility. Thus these hyped frauds you make are only operating as oligarchy clusterfucks to milk the greater fool speculators. The proof is already quite evident with the [abject failure of Steem](https://steemit.com/dlive/@anonymint/re-jerrybanfield-3ffc3520-426a-11e8-836a-b9befc1a6029-20180420t060218449z) because of the oligarchy control (which you [premeditated](https://steemit.com/dlive/@joeyarnoldvn/re-anonymint-re-topnetworkeral-re-jerrybanfield-3ffc3520-426a-11e8-836a-b9befc1a6029-20180421t042534070z) with your sneaky fast mine corruption and repeated again with the corruption of the EOS ICO such that Brock Pierce and his Goldman buddies will ostensibly control 80% of the tokens by buying the ICO from themselves). Ouroboros at least has a mathematical specification. You never even wrote a proper whitepaper for DPoS. All we have some [belated half-assed blog from you](https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper) which isn’t even up to par for a high school science project, much less for system that is supposed to be widely deployed to the Internet. > ### Steem / BitShares / EOS > Existing DPOS chains select a set of **_unlikely to collude_** entities by approval voting and then schedule them in a pseudorandom order. That is a lie and you know it. You know very well that [DPoS elections favor adversaries and oligarchies](https://medium.com/@shunsai.takahashi/proof-of-approval-a-better-blockchain-consensus-protocol-b19a55dc331b#c400). The reason that DFINITY and Ouroboros are employing randomization is summarized in _§0.3.2 Designing the Algorithm_ [on pg. 4](https://downloads.skycoin.net/whitepapers/a-distributed-consensus-algorithm-for-cryptocurrency-networks.pdf#page=4) of the Skycoin Obelisk census system whitepaper: > <sup>Another class of algorithms, that we also rejected, involve electing a leader node. Agreeing to elect one’s leader (or a temporary ruler), we contend, is not a very intelligent behavior either. Here is why. Leader election is a natural adaptation in situations when group’s survival requires high intelligence, while the average intelligence of group members is low. Hence the group, in order to to survive, has to find a member who can make intelligent decisions for the group.</sup> --- > ### Distribution Security Issues > I have previously made the case that BitShares, Steem, and EOS are the most decentralized because it has the most unique confirmations per confirmation window. Liar. > In past articles on proof of stake I have also shown that even if Ouroboros removed the 1% requirement to participate, it would be economically unviable to cover the cost of operating a node with income from less than 1% of the block rewards. I have also argued in the past that because stake is distributed by pareto principle, and voter selection of candidates is also selected by pareto principle, the resulting distribution of stake among producers is pareto2. In other words, stake-weighted voting creates a very high centralization that can only be countered with approval voting followed by giving the top N equal weight (like BitShares, Steem, and EOS do). DPoS’ approval voting is [no better and arguably much worse](https://medium.com/@shunsai.takahashi/proof-of-approval-a-better-blockchain-consensus-protocol-b19a55dc331b#c400). Voting and democracy are oligarchy paradigms, c.f. [_Castellano, C., Fortunato, S., Loreto, V.: Statistical physics of social dynamics. Rev. Mod. Phys. 81(2), 591–646 (2009)_](https://arxiv.org/abs/0710.3256). [Click to read more](https://steemit.com/eos/@anonymint/re-tsto-re-anonymint-re-happymoneyman-why-the-eos-chain-stopped-and-how-it-was-fixed-20180620t115353378z). > Cardano’s Ouroboros algorithm is not mathematically secure due to bad assumptions regarding the relationship between stake and individual-judgment being distributed by the pareto principle. Bullshit! Ouroboros has a precise mathematical formulation which properly accounts for the factor you are contemplating. Realize this by noting [how DFINITY’s hypergeometic analysis works](https://bitcointalk.org/index.php?topic=4479703.0). In the worst case, Ouroboros requires many blocks to become irreversible because it’s math is confirming that the super majority has confirmed a stable longest fork. You can’t correctly criticize its worst case long irreversibility time and claim the math is broken. Duh. IOW, the Zipf power-law distribution of wealth’s effect on delaying irreversibility is accounted for in the mathematical model. Although individual or ranges of slots may have collusion due to the concentration of control due to the power-law distribution, the math converges to irreversibility only when (analogous to the hypergeometric selection of a validator set in DFINITY) the validator set over uncontested slots has selected a sufficient set. Ouroboros was formulated differently than DFINITY ostensibly to accommodate the slower randomness updates but apparently this doesn’t cause much difference in delay to irreversibility. > The authors of the paper failed to cite relevant prior art or to justify why their deviations from existing art are an improvement. Dan, how can Charles cite a proper, formalized whitepaper which you never wrote? --- I see that Ethereum’s research forum is trying to copy DFINITY now. https://ethresear.ch/ EOS may also try to copy extant published designs which are superior to their own. Thus hopefully the project I am working on will launch as closed source initially until the first-mover advantage (FMA) is fully locked in.
author | anonymint |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180618t084448784z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://www.reddit.com/r/cardano/comments/80wltj/block_time/","https://iohk.io/blog/on-the-ouroboros-design-how-rigour-and-engineering-are-essential-for-critical-infrastructure/","https://busy.org/exit?url=https%3A%2F%2Fsteemit.com%2Feos%2F%40dan%2Fin-defense-of-consortium-blockchains","https://busy.org/@anonymint/consortium-blockchains-e-g-dpos-and-tendermint-can-t-internet-scale","https://medium.com/@shelby_78386/hahaha-hes-adding-even-more-centralization-and-making-the-system-more-fragile-and-pushing-it-even-ca4cd95c3fe8","https://medium.com/@shelby_78386/most-of-what-you-have-written-has-been-holistically-refuted-in-my-newest-blog-which-i-plan-to-also-747fcb9f3e6b","https://cardanodocs.com/cardano/transaction-assurance/","https://medium.com/@shunsai.takahashi/proof-of-approval-a-better-blockchain-consensus-protocol-b19a55dc331b#c400","https://steemit.com/cryptocurrency/@anonymint/scaling-decentralization-security-of-distributed-ledgers-part-3","https://steemit.com/dlive/@anonymint/re-jerrybanfield-3ffc3520-426a-11e8-836a-b9befc1a6029-20180420t060218449z","https://bitcointalk.org/index.php?action=profile;u=1687982","https://bitcointalk.org/index.php?topic=27787.20#msg40023268","https://steemit.com/dpos/@dantheman/dpos-consensus-algorithm-this-missing-white-paper","https://bitcointalk.org/index.php?topic=4438334.100#msg40437206","https://steemit.com/dlive/@joeyarnoldvn/re-anonymint-re-topnetworkeral-re-jerrybanfield-3ffc3520-426a-11e8-836a-b9befc1a6029-20180421t042534070z","https://downloads.skycoin.net/whitepapers/a-distributed-consensus-algorithm-for-cryptocurrency-networks.pdf#page=4","https://arxiv.org/abs/0710.3256","https://steemit.com/eos/@anonymint/re-tsto-re-anonymint-re-happymoneyman-why-the-eos-chain-stopped-and-how-it-was-fixed-20180620t115353378z","https://bitcointalk.org/index.php?topic=4479703.0","https://ethresear.ch/"],"app":"steemit/0.1"} |
created | 2018-06-18 08:44:45 |
last_update | 2018-06-20 12:16:06 |
depth | 1 |
children | 1 |
last_payout | 2018-06-25 08:44:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16,267 |
author_reputation | 28,085,935,540,836 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 61,199,069 |
net_rshares | 40,285,377,467 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
phelim | 0 | 0 | 100% | ||
scorer | 0 | 40,285,377,467 | 100% | ||
dheeraj07 | 0 | 0 | 100% |
Yes, your Presume is near to Reality. Thanks a lot for nice and clear information from you.
author | asifhb76 |
---|---|
permlink | re-anonymint-re-dan-peer-review-of-cardano-s-ouroboros-20180619t144148213z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-06-19 14:41:48 |
last_update | 2018-06-19 14:41:48 |
depth | 2 |
children | 0 |
last_payout | 2018-06-26 14: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 | 91 |
author_reputation | 50,013,636,346 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 61,367,960 |
net_rshares | 0 |
Congratulations @dan! Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20180106) in the following categories: * Comments - Ranked 6 with 203 comments * Pending payout - Ranked 1 with $ 1573,88
author | arcange |
---|---|
permlink | re-peer-review-of-cardano-s-ouroboros-20180106t160254000z |
category | cardamon |
json_metadata | "" |
created | 2018-01-07 15:02:54 |
last_update | 2018-01-07 15:02:54 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 15:02: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 | 246 |
author_reputation | 1,148,349,221,690,653 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,779,589 |
net_rshares | 0 |
Wow - Cryptos in peer-reviewed science!
author | arrax |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t190639921z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 19:06:39 |
last_update | 2018-01-06 19:06:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 19:06: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 | 39 |
author_reputation | 1,944,025,110,290 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,591,506 |
net_rshares | 1,021,163,037 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
arrax | 0 | 1,021,163,037 | 100% |
Yeah ... @dan those last minute votes are a shame... but honestly, what gets on my nerves much more is those early paid votes that clog up the hot and trending pages with shitposts. imho it would be more important to prevent paid votes before the posts are a day or maybe 2 old. I get that this initiative targets improved correctability (if that's a word) of post rewards but I think re-enabling organic discovery through "normally" curated trending/hot sections would be of greater effect! just my two cents! #kittensunite edit: oh and blacklists... why can't we just get all those meme-re-posters blacklisted in the big voting bots... damn, i forgot again, they all just care for the ka-ching and couldn't give less shit about the health of this ecosystem... #rantover editagain: and just to be clear, yes I do use voting bots, it would be silly to let the shameless walk away with all of it by themselves... but I do play it fair and vote my stuff at 3-5 days - my "real" supporters get their curation and you get your chance to correct me if neccessary...
author | auliaturrahman | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201817t38284z | ||||||
category | cardamon | ||||||
json_metadata | {"tags":"cardamon","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-01-06 20:08:33 | ||||||
last_update | 2018-01-06 20:08:33 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-01-13 20:08:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.319 HBD | ||||||
curator_payout_value | 0.454 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,067 | ||||||
author_reputation | 1,348,421,939,968 | ||||||
root_title | "Peer Review of Cardano's Ouroboros" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 27,603,052 | ||||||
net_rshares | 190,530,773,436 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 189,016,108,808 | 100% | ||
auliaturrahman | 0 | 1,108,494,526 | 100% | ||
rajafahad | 0 | 406,170,102 | 100% |
great post dude
author | rajafahad |
---|---|
permlink | re-auliaturrahman-re-dan-201817t38284z-20180113t215632844z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-13 21:56:36 |
last_update | 2018-01-13 21:56:36 |
depth | 2 |
children | 0 |
last_payout | 2018-01-20 21:56:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | -6,279,412,433 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,321,657 |
net_rshares | 0 |
just see your post ..much appreciated @dan The Ouroboros evidence of Stake (PoS) Algorithm is the maximum critical part of the protocol. It defines the manner wherein nodes attain consensus about the state of ledger. Ouroboros is particular as it's far the first blockchain protocol that is primarily based on evidence of stake and has been scientifically proven as comfortable
author | awaisquarni |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t060556292z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1","users":["dan"]} |
created | 2018-01-06 06:05:54 |
last_update | 2018-01-06 06:07:18 |
depth | 1 |
children | 3 |
last_payout | 2018-01-13 06:05: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 | 378 |
author_reputation | -32,141,480,680 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,453,772 |
net_rshares | -2,189,895,983 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lakerta06 | 0 | -2,651,537,142 | -100% | ||
santanero714 | 0 | 89,154,700 | 100% | ||
saifuk | 0 | 372,486,459 | 100% |
Scientifically proven as comfortable? Would you mind expanding on what you mean by comfortable and the methodology behind it's scientifically proven comfortability?
author | ctbradley |
---|---|
permlink | re-awaisquarni-re-dan-peer-review-of-cardano-s-ouroboros-20180106t064323549z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:43:24 |
last_update | 2018-01-06 06:43:24 |
depth | 2 |
children | 2 |
last_payout | 2018-01-13 06:43: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 | 164 |
author_reputation | 14,291,670,541 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,459,226 |
net_rshares | 411,972,532 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rajafahad | 0 | 411,972,532 | 100% |
It means a bunch of scientist think that its fast enough for production but no one else does. Thank god scientist dont rule the world. GO EOS>
author | godratio |
---|---|
permlink | re-ctbradley-re-awaisquarni-re-dan-peer-review-of-cardano-s-ouroboros-20180106t131132210z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 13:11:21 |
last_update | 2018-01-06 13:11:21 |
depth | 3 |
children | 1 |
last_payout | 2018-01-13 13:11: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 | 143 |
author_reputation | 16,153,196 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,520,975 |
net_rshares | 1,033,804,592 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
paulata | 0 | 610,227,200 | 100% | ||
rajafahad | 0 | 423,577,392 | 100% |
Where is CH's honour?
author | benjojo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t062731544z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:27:30 |
last_update | 2018-01-06 06:27:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:27: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 | 21 |
author_reputation | 120,749,050,383,122 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,456,932 |
net_rshares | 1,160,486,034 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cvgn | 0 | 1,160,486,034 | 100% |
Worth reading ,thankyou for sharing
author | bishalmanandhar |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t155516479z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 15:55:18 |
last_update | 2018-01-07 15:55:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 15:55:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 484,475,324 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,789,890 |
net_rshares | 0 |
Congratulations @dan, this post is the third most rewarded post (based on pending payouts) in the last 12 hours written by a Superhero or Legend account holder (accounts hold greater than 100 Mega Vests). The total number of posts by Superhero and Legend account holders during this period was 37 and the total pending payments to posts in these categories was $5107.19. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-6th-january-2018--part-ii). If you do not wish to receive these messages in future, please reply stop to this comment.
author | bitgeek |
---|---|
permlink | re-peer-review-of-cardano-s-ouroboros-20180106t080823 |
category | cardamon |
json_metadata | "" |
created | 2018-01-06 08:08:24 |
last_update | 2018-01-06 08:08:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 08: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 | 637 |
author_reputation | 13,049,044,453,787 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,471,599 |
net_rshares | 0 |
author | bitton |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t195917418z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 20:02:45 |
last_update | 2018-01-06 20:02:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 20:02:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.650 HBD |
curator_payout_value | 0.234 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 1,607,699,612,184 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,601,973 |
net_rshares | 298,642,925,677 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 174,191,315,960 | 100% | ||
bitton | 0 | 124,451,609,717 | 100% |
Thanks! I was just about tp check this topic.
author | bitton |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t233447422z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 23:34:48 |
last_update | 2018-01-07 23:34:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 23:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.354 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 1,607,699,612,184 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,867,336 |
net_rshares | 131,106,776,012 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitton | 0 | 131,106,776,012 | 100% |
Much appreciated fir the heads up @dan, i was about to pull the trigger on investing. @bitshares phone app was buggy so i bailed.
author | blaineb |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t060122947z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan","bitshares"],"app":"steemit/0.1"} |
created | 2018-01-06 06:01:24 |
last_update | 2018-01-06 06:01:24 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 06:01:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 5,679,606,233,585 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,453,138 |
net_rshares | 2,877,081,544 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 116,823,400 | 100% | ||
blaineb | 0 | 2,760,258,144 | 100% |
So you gave up on bts because of a phone app? there site works fine on mobile btw, not that anyone should be investing on there phone in the first place... and you will heavily regret selling your bitshares
author | edolascrypto |
---|---|
permlink | re-blaineb-re-dan-peer-review-of-cardano-s-ouroboros-20180106t091250599z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 09:12:18 |
last_update | 2018-01-06 09:12:18 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 09:12:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.245 HBD |
curator_payout_value | 0.057 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 84,491,306,580 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,481,296 |
net_rshares | 31,140,465,812 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ikegass33 | 0 | 26,182,641,414 | 35% | ||
blaineb | 0 | 2,760,258,144 | 100% | ||
haxxley | 0 | 607,961,700 | 100% | ||
cryptocatz | 0 | 1,206,644,172 | 100% | ||
rajafahad | 0 | 382,960,382 | 100% |
Yes, i used their app that i downloaded from the googke play store to sign up. If that is buggy, despite reinstalling, its not a good first taste. No such problems with dash, doge, or jaxx.
author | blaineb |
---|---|
permlink | re-edolascrypto-re-blaineb-re-dan-peer-review-of-cardano-s-ouroboros-20180106t093103652z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 09:31:06 |
last_update | 2018-01-06 09:31:06 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 09:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 5,679,606,233,585 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,484,150 |
net_rshares | 6,691,724,237 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ikegass33 | 0 | 2,380,240,128 | 3% | ||
blaineb | 0 | 2,494,848,707 | 100% | ||
edolascrypto | 0 | 1,427,872,590 | 100% | ||
rajafahad | 0 | 388,762,812 | 100% |
Stumbled across this and I’m impressed. Great work
author | brianvigeant |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t035812126z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 03:58:12 |
last_update | 2018-01-09 03:58:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 03:58: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 | 50 |
author_reputation | 31,906,591,964 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,156,829 |
net_rshares | 500,817,500 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianvigeant | 0 | 500,817,500 | 100% |
thank you good informative sir.........
author | btcgame |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t044433780z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 04:44:33 |
last_update | 2018-01-08 04:44:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 04:44: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 | 39 |
author_reputation | 4,950,253,657 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,915,889 |
net_rshares | 230,839,039 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
btcgame | 0 | 230,839,039 | 100% |
Well written, this article makes good sense to me & I am not very technical ... yet! Time to go through all your old posts & study up. One of the reasons I have enjoyed this platform so much is the presence of the people who make it happen & the ability to interact with them. Keep up the great work 🙏
author | ceattlestretch |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t190419894z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 19:04:21 |
last_update | 2018-01-08 19:04:21 |
depth | 1 |
children | 2 |
last_payout | 2018-01-15 19:04:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 301 |
author_reputation | 1,554,315,308,399 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,067,138 |
net_rshares | 0 |
well ... this reply alone explains ALOT about whats wrong in crypto right now ...
author | pip010 |
---|---|
permlink | re-ceattlestretch-re-dan-peer-review-of-cardano-s-ouroboros-20180109t102945049z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 10:29:45 |
last_update | 2018-01-09 10:29:45 |
depth | 2 |
children | 1 |
last_payout | 2018-01-16 10:29: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 | 81 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,219,916 |
net_rshares | 0 |
Please expand
author | ceattlestretch |
---|---|
permlink | re-pip010-re-ceattlestretch-re-dan-peer-review-of-cardano-s-ouroboros-20180109t173451138z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 17:34:51 |
last_update | 2018-01-09 17:36:24 |
depth | 3 |
children | 0 |
last_payout | 2018-01-16 17:34: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 | 13 |
author_reputation | 1,554,315,308,399 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,303,093 |
net_rshares | 0 |
Good post Dan. I would like to hear your take on RaiBlocks DPOS protocol. I don't understand how any DPOS system can be secure if the representatives can just collude. https://raiblocks.net/page/representatives.php?limit=100
author | chaka321 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t231739620z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://raiblocks.net/page/representatives.php?limit=100"],"app":"steemit/0.1"} |
created | 2018-01-06 23:17:42 |
last_update | 2018-01-06 23:17:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 23:17: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 | 225 |
author_reputation | 34,519,613,062 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,633,581 |
net_rshares | 0 |
Shots fired, lol jk would be interested to hear their response.
author | chrone |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t164800760z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 16:48:03 |
last_update | 2018-01-06 16:48:03 |
depth | 1 |
children | 4 |
last_payout | 2018-01-13 16:48:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.025 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 1,645,171,029,762 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,564,884 |
net_rshares | 3,415,329,786 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kafkanarchy84 | 0 | 3,415,329,786 | 1% |
Here is the complete reply from Charles: " * That's Dan Larimer doing what Dan Larimer does best * Claiming he invented everything and everything else is junk * Bonus points if you guys can find the article he wrote about ethereum on bitsharestalk.org * Back in 2014 * Where he called us an interesting computer science project * That won't go anywhere * Because he somehow still has influence we will write a proper rebuttal * But basically here is the quick rebuttal * Protocol design when you're talking about secure protocols starts with security definitions * https://eprint.iacr.org/2014/765 * This is the initial Foundation upon which all consensus protocols ought to be judged in our space * It defines what a secure Ledger is * Next you need to prove that proof Works satisfy this so you have a benchmark * Then you need to prove proof of stake satisfies this * From that point it's a game of taking unrealistic assumptions and gradually making them practical and performant * And this is what we have been doing for a year-and-a-half * In an extremely systematic way * As can be demonstrated by all the revisions that we've pushed to ePrint * For both Ouroboros and Ouroboros praos * The section on random number generation is just plain wrong * The threshold is 50% and we are using a multi-party computation protocol * Which is the gold standard * We even invented a new protocol specifically for this task * Called scrape * 216.pdf * it's just extraordinary to me how people can be so profoundly naive about the process upon which one has to follow to ensure a protocol is properly designed * This is not a subjective process * This is a well-understood process which has given us modern cryptography * There are standards and benchmarks you have to adhere to * As for citations our protocol is distinctly different * Delegated proof of stake is basically paxos with a voting system bolted on * Somehow Dan forgot to cite Leslie Lamport * He stoled work from the 1970s * We have nothing in common with this idea * I honestly try very hard to avoid commenting on his work * But when I see things like this it just makes me sad * Noticed there was absolutely no discussion about the network side of things * Let's go ahead and talk about a million transactions per second but have absolutely no strategy to store or to move that data"
author | emantas |
---|---|
permlink | re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180106t205650071z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://eprint.iacr.org/2014/765"],"app":"steemit/0.1"} |
created | 2018-01-06 20:56:51 |
last_update | 2018-01-06 20:56:51 |
depth | 2 |
children | 3 |
last_payout | 2018-01-13 20:56:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,346 |
author_reputation | 13,365,384,561 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,611,613 |
net_rshares | 4,846,447,887 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chrone | 0 | 2,166,645,209 | 12% | ||
cryptoash | 0 | 619,520,000 | 100% | ||
brixx | 0 | 606,090,200 | 100% | ||
emantas | 0 | 563,280,257 | 100% | ||
blockpanda | 0 | 519,556,700 | 100% | ||
rajafahad | 0 | 371,355,521 | 100% |
Found at https://www.reddit.com/r/cardano/comments/7oibsi/some_shots_fired_across_the_bow/
author | emantas |
---|---|
permlink | re-emantas-re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180106t205720921z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://www.reddit.com/r/cardano/comments/7oibsi/some_shots_fired_across_the_bow/"],"app":"steemit/0.1"} |
created | 2018-01-06 20:57:21 |
last_update | 2018-01-06 20:57:21 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 20:57: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 | 90 |
author_reputation | 13,365,384,561 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,611,707 |
net_rshares | 615,320,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ebleachfinally | 0 | 615,320,000 | 100% | ||
emantas | 0 | 0 | 100% |
In my experience ETH software is just horrible, the worst, and I won't let my family use it...
author | surfyogi |
---|---|
permlink | re-emantas-re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094200935z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 09:42:00 |
last_update | 2018-01-12 09:42:00 |
depth | 3 |
children | 0 |
last_payout | 2018-01-19 09:42: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 | 94 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,963,882 |
net_rshares | 0 |
"Where he called us an interesting computer science project * That won't go anywhere" Well, IMO, he was right. A couple additionnal cryptokitties projects should convince you. Regarding the "stolen work from the 1970s", I assume this could be a humoristic description of any current blockchain technology.
author | whyknot |
---|---|
permlink | re-emantas-re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180108t143938333z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 14:39:39 |
last_update | 2018-01-08 14:39:39 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 14:39:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.084 HBD |
curator_payout_value | 0.359 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 305 |
author_reputation | 112,320,686,869 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,017,576 |
net_rshares | 132,713,813,345 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | 132,713,813,345 | 1% |
Glad to see this response. I lost respect for Charles and the Cardano project after seeing him, multiple times, essentially shilling Cardano in the Bitshares Telegram group as if he's doing the community there a favor. Then, he posts a link to a YouTube live "AMA" (interview with youtuber) and he claims 1) he can't comment on EOS because he doesn't follow it nor read up on it (I smell stinky bullshit)... and 2) he claims bitUSD as a "wonky failed experiment" or something like that. Ummm.... bitUSD (and its sibling bitassets / smartcoins) are about to take Bitshares to the moon. (shout out to the mods there, who went on to ban him from that group :) All this academic talk being tossed around by Charles is funny. Academia is well known for doing research, for the sake of research, and not commercializing or transferring that IP into the real world. The fact that their market cap is ~4x EOS right now after the insane pump recently only justifies a much higher price point for EOS.
author | clickside |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t063222333z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:32:24 |
last_update | 2018-01-06 06:33:30 |
depth | 1 |
children | 1 |
last_payout | 2018-01-13 06:32:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.065 HBD |
curator_payout_value | 1.242 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 995 |
author_reputation | 121,437,739,685 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,457,610 |
net_rshares | 547,630,065,262 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
benjojo | 0 | 17,508,794,953 | 100% | ||
max-infeld | 0 | 8,599,601,684 | 100% | ||
robrigo | 0 | 250,674,354,130 | 100% | ||
richardcrill | 0 | 177,450,315,216 | 100% | ||
ryanprentiss | 0 | 8,583,331,592 | 100% | ||
ikegass33 | 0 | 78,151,217,555 | 100% | ||
sim31 | 0 | 584,117,000 | 100% | ||
mdjurek | 0 | 591,641,600 | 100% | ||
scottisatthepool | 0 | 617,220,000 | 100% | ||
etheos | 0 | 617,220,000 | 100% | ||
n00th3r | 0 | 574,014,600 | 100% | ||
ping77 | 0 | 606,211,415 | 100% | ||
blackboxcrypto | 0 | 593,783,800 | 100% | ||
beingbetter | 0 | 787,937,714 | 100% | ||
blockpanda | 0 | 547,225,400 | 100% | ||
stone5 | 0 | 1,143,078,603 | 100% |
CH cannot bring himself to acknowledge the work of others. He touts standards for peer review, research and acknowledgment yet blatantly falls short of observing those standards himself.
author | benjojo |
---|---|
permlink | re-clickside-re-dan-peer-review-of-cardano-s-ouroboros-20180106t070856376z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:08:57 |
last_update | 2018-01-06 07:08:57 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 07:08:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 187 |
author_reputation | 120,749,050,383,122 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,462,973 |
net_rshares | 9,013,926,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ryanprentiss | 0 | 8,409,050,748 | 100% | ||
scottisatthepool | 0 | 604,875,600 | 100% |
A much needed post! Thank you. I would also be interested in a post describing the falling out with Hoskinson. Not for its gossip value (although feel free to give details and quotes with some name calling ^^) but for context. Perhaps it can shed some light on the nature of these two new projects (EOS and Cardano) and how they differ on a more fundamental level.
author | cob |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t212619135z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 21:26:21 |
last_update | 2018-01-06 21:30:06 |
depth | 1 |
children | 109 |
last_payout | 2018-01-13 21:26:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 562.790 HBD |
curator_payout_value | 156.432 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 365 |
author_reputation | 28,093,007,195,816 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,616,818 |
net_rshares | 74,330,714,089,426 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -13,072,310,614,538 | -100% | ||
ned | 0 | 84,994,547,453,537 | 100% | ||
cob | 0 | 1,726,937,498,125 | 100% | ||
felix.mg1 | 0 | 922,353,392,522 | 100% | ||
methodise | 0 | 25,999,496,025 | 100% | ||
bobmaloney3 | 0 | 0 | 0% | ||
noganoo | 0 | -12,142,493,196 | -100% | ||
natty | 0 | 482,470,668 | 100% | ||
indykpol | 0 | 5,746,927,425 | 100% | ||
resilience | 0 | 217,206,047 | 100% | ||
hql2016 | 0 | 12,656,891,789 | 100% | ||
redeemer | 0 | 0 | 100% | ||
blacklist-a | 0 | -52,095,934 | -10% | ||
vidallia | 0 | 11,589,279,513 | 100% | ||
abhi3700 | 0 | 34,640,430,981 | 100% | ||
quantumevolution | 0 | 605,282,500 | 100% | ||
kouloumos | 0 | 1,216,625,640 | 100% | ||
dahlsom | 0 | 11,541,826,461 | 100% | ||
maven360 | 0 | 15,523,627,753 | 100% | ||
drakos | 0 | -398,180,782,635 | -100% | ||
quantumhealing | 0 | 0 | 100% | ||
newalturim | 0 | 8,992,184,602 | 100% | ||
eatplaylove | 0 | 0 | 100% | ||
bugaev | 0 | 331,336,228 | 100% | ||
harryhoudinei | 0 | 580,702,500 | 100% | ||
eltomos | 0 | 597,836,800 | 100% | ||
climbicsystem | 0 | 586,359,000 | 100% | ||
baylortomcat | 0 | 619,776,763 | 100% | ||
uscfhq | 0 | 454,708,346 | 100% | ||
rumble | 0 | 0 | 100% | ||
tasubo | 0 | 617,220,000 | 100% | ||
idlebright | 0 | 5,600,819,575 | 100% | ||
nick300 | 0 | 0 | 100% | ||
berlelund | 0 | 0 | 100% | ||
introvertspeaks | 0 | 1,247,887,776 | 100% | ||
mterrenal | 0 | 0 | 0% | ||
itsju | 0 | 2,282,819,231 | 100% | ||
giovannicic | 0 | 0 | 100% | ||
dallasrushing | 0 | 0 | 100% | ||
spacebird89 | 0 | 679,519,920 | 100% | ||
narla.ghelo | 0 | 172,060,000 | 100% | ||
loomy | 0 | 7,720,723,002 | 100% | ||
ersulba | 0 | 678,104,213 | 100% | ||
blockpanda | 0 | 614,860,000 | 100% | ||
shxne7 | 0 | 605,637,100 | 100% | ||
mrdupin | 0 | 593,704,077 | 100% | ||
big.brother | 0 | 272,287,237 | 100% | ||
steem82 | 0 | 236,496,817 | 100% | ||
some-dude | 0 | 1,156,291,755 | 100% | ||
robroy | 0 | 614,500,000 | 100% | ||
kikiriki | 0 | 719,505,571 | 100% | ||
velvia | 0 | 0 | 100% | ||
helleagy | 0 | 1,119,875,536 | 100% | ||
energyaddict22 | 0 | 1,215,220,322 | 100% | ||
komichian | 0 | 0 | 0% | ||
ultimatetrader | 0 | 614,468,002 | 100% | ||
dcj | 0 | 383,029,069 | 100% | ||
yepes | 0 | 1,128,808,096 | 100% | ||
iamdrock | 0 | 0 | 100% | ||
sumitj | 0 | 1,137,278,580 | 100% | ||
wargliis | 0 | 963,203,405 | 100% | ||
tdi220w | 0 | 1,160,485,455 | 100% | ||
nicholasleeson | 0 | 1,119,868,327 | 100% | ||
orst | 0 | 1,160,484,312 | 100% | ||
ronildo | 0 | 602,210,000 | 100% | ||
mucyoung | 0 | 0 | 0% | ||
raddude | 0 | 614,500,000 | 100% | ||
tamhunt | 0 | 1,119,866,987 | 100% | ||
squidgod | 0 | 1,027,028,139 | 100% | ||
kamov | 0 | 0 | 100% | ||
belalmood | 0 | 0 | 100% |
Charles brought in the money and then Dan kicked him out. I got that straight from Charles on Skype the week after it happened. But there’s more to the story that reflects even more poorly on Dan that I feel I shouldn’t blabber about. Notice @dan downvoted your comment, probably because he doesn’t ever want that information to come out. Charles was basically driven out of ETH also. I think in both cases he wanted a more transparent and higher quality compliance with law. Neither Dan nor Vitalik wanted oversight of a board or requirements to produce certain quality of whitepapers and such. Charles likes formalism. Dan wants to operate by the seat of his pants with informalism that amounts to [roughly about the academic level of a high school science project](https://steemit.com/cardamon/@anonymint/re-dan-peer-review-of-cardano-s-ouroboros-20180618t084448784z). Yet I am not too overly impressed with IOHK thus far though. Lots of formalism, but very little in the way of significant foundational breakthroughs as far as I can find so far. Note I used to discuss with both Dan (bytemaster) and Charles (charleshoskinson) on `bitcointalk.org` in 2013. I thought it was a strange partnership at the time, and I didn’t expect it to last long. They just seem so different. Charles is an academic. Dan is a very strange person. He is sort of mix of an engineer, snake oil salesman, and a progressive, leftist wolf wrapped in libertarian sheepskin. Very complex to try to understand his psyche.
author | anonymint |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180618t140709777z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1","links":["https://steemit.com/cardamon/@anonymint/re-dan-peer-review-of-cardano-s-ouroboros-20180618t084448784z"]} |
created | 2018-06-18 14:07:06 |
last_update | 2018-06-18 14:19:51 |
depth | 2 |
children | 0 |
last_payout | 2018-06-25 14:07: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 | 1,502 |
author_reputation | 28,085,935,540,836 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 61,230,075 |
net_rshares | 0 |
I think that is unnecessary. Charles Hoskinson's behaviour speaks louder than any subjective analysis of the past. Investors have all the information they need to make solid decisions right now.
author | benjojo |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180106t215331965z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 21:53:33 |
last_update | 2018-01-06 21:53:33 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 21:53: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 | 196 |
author_reputation | 120,749,050,383,122 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,621,051 |
net_rshares | 330,891,144 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
quantumhealing | 0 | 0 | 100% | ||
gchan129 | 0 | 330,891,144 | 100% |
Nothing personal @cob, but I'm downvoting your comment, $890 is way too excessive for a few lines of text.
author | drakos |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t060019262z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["cob"],"app":"steemit/0.1"} |
created | 2018-01-09 06:01:12 |
last_update | 2018-01-09 06:01:12 |
depth | 2 |
children | 0 |
last_payout | 2018-01-16 06:01: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 | 106 |
author_reputation | 112,280,226,665,329 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,177,256 |
net_rshares | 0 |
please visit my post you ll find good content upvote me
author | farah-kamran |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t082222461z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 08:22:57 |
last_update | 2018-01-09 08:22:57 |
depth | 2 |
children | 0 |
last_payout | 2018-01-16 08:22: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 | 55 |
author_reputation | 175,703,680,965 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,198,979 |
net_rshares | 0 |
Wtf? 1k for your comment? #mindblown
author | foovler |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t012413384z |
category | cardamon |
json_metadata | {"tags":["cardamon","mindblown"],"app":"steemit/0.1"} |
created | 2018-01-07 01:24:15 |
last_update | 2018-01-07 01:24:15 |
depth | 2 |
children | 1 |
last_payout | 2018-01-14 01:24: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 | 36 |
author_reputation | 17,885,206,395,471 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,653,332 |
net_rshares | 569,171,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
globalone | 0 | 569,171,000 | 100% |
welcome to steemit.
author | khoa |
---|---|
permlink | re-foovler-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t040222297z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 04:02:21 |
last_update | 2018-01-08 04:02:21 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 04:02: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 | 19 |
author_reputation | 2,970,078,109,290 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,909,322 |
net_rshares | 0 |
competition betwern cardano and eos is a good thing. may the best platform win. in the end its the users that really win. im leaning towards eos ;)
author | howi |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t061657323z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 06:17:00 |
last_update | 2018-01-09 06:17:00 |
depth | 2 |
children | 0 |
last_payout | 2018-01-16 06:17: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 | 147 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,179,891 |
net_rshares | 0 |
I only up-voted this comment because I want to grab a slice of this big pizza.
author | introvertspeaks |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t043524668z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:35:24 |
last_update | 2018-01-07 20:39:18 |
depth | 2 |
children | 2 |
last_payout | 2018-01-14 04:35:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.047 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | -4,351,658,764,138 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,679,780 |
net_rshares | 6,947,299,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dzid26 | 0 | -2,235,196,138 | -100% | ||
newalturim | 0 | 9,182,495,387 | 100% |
That's not how it works. You could have only got a slice if you had voted before Ned. You just gave Ned a crumb of pizza and you got squat
author | beanz |
---|---|
permlink | re-introvertspeaks-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t121453161z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 12:14:54 |
last_update | 2018-01-07 12:14:54 |
depth | 3 |
children | 1 |
last_payout | 2018-01-14 12:14:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.344 HBD |
curator_payout_value | 0.096 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 140 |
author_reputation | 77,215,574,122,930 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,747,797 |
net_rshares | 44,201,742,005 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakos | 0 | 42,467,683,041 | 10% | ||
eltomos | 0 | 610,227,200 | 100% | ||
mkauai | 0 | 573,532,064 | 100% | ||
native-one | 0 | 550,299,700 | 100% |
Thanks for your post! Please Follow, Upvote & Resteem my post to help us to travel & explore more https://steemit.com/travel/@jonbee/travel-with-us-ep-01-kushtia-sugar-mills-kushtia-bangladesh-bd-steemian
author | jonbee |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t150556975z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/travel/@jonbee/travel-with-us-ep-01-kushtia-sugar-mills-kushtia-bangladesh-bd-steemian"],"app":"steemit/0.1"} |
created | 2018-01-07 15:06:39 |
last_update | 2018-01-07 15:06:39 |
depth | 2 |
children | 0 |
last_payout | 2018-01-14 15:06: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 | 204 |
author_reputation | -455,593,770,537 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,780,328 |
net_rshares | -603,013,600 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ohkamanda | 0 | -603,013,600 | -100% |
Here’s a snippet of events in order to color in context: 1. Dan writes early BTS paper (though it’s unclear if this was a paper prior to the one published by Charles and Dan together) - sees locking up of BTS for BitAsset as a holy grail in supply reduction. 2. Charles is in the crypto space already talking about DEX and other later-to-be-developed concepts; teaching courses on bitcoin and cryptocurrency; gets put in touch w Dan 3. Early BTS; Dan and Charles clash on personal level - stemming from competing technical desires and ego desires. They split. 4. Charles rebounds immediately and is the first technologist to recognize Turing Complete potential when introduced to Vitalik by Anthony Di Orio. Dan has no awareness to the effort and Ethereum concept. 5. Ethereum announced. 6. Dan purports any successes of Eth can be adopted by BTS. 7. Dan tells confidants (including me but I was later than others) he will attempt Turing Complete one day. 7.5 Dan leaves BTS. 8. Dan does Steem with me and founding team. 8.25 Steem working; July 2016; Dan begins selling Ned about the wow factor of Wren in Dan’s living room. 8.5. Cob and associate calls Ned. Ned tells them about possible future token protocols on Steem. 9. Dan tells Steem he will build Turing Complete on Steem (Wren). (I was not pre-aware or expecting the public communications from Dan on this. Others in the organization were skeptical of Wren). 10. Dan leaves Steem. Tells community he will not be posting anymore. 10.5. Dan asks Ned not to compete with EOS because of market clarity 11. EOS begins building by copying BTS STEEM and Ethereum - Wren concept is dropped - subsequently Web Assembly ideas of Ethereum are harnessed - and reverse auction IPO levered for fundraising EOS. 11.5 Ned writes SMT Whitepaper with @theoretical. Ned includes section criticizing the weaknesses of general purpose / Turing Complete / general scripting on blockchain - and advocates application specific programs tailored to high demand use cases - I.e. specialized programmability tokens for fundraising, monetization and growth. 12. Dan writes post about Ouroboros and comments about Hoskinson from his very own viewpoint. 13. The cult of personality on Steem begs for more! Luckily this is nearly 1/1000th of the gory details and barely magnified! Ive got all the rest in my journals (and tapes from when things got dicey) (that get released by my lawyers if I die (/not only if I am killed/) before deciding to include or not include these chapters in a book). Despite the commentary, at the end of the day Hoskinson and Larimer are both credibly respectable for certain things - no one is perfect and I believe we can consider them both thoughtful technologists, and to see some of the name calling - frankly from glass houses, it calls to advise everyone to take the “think about yourself” approach before judging others and spreading memes that physically cannot be whole truths because everything is interpretation. On the whole, and from what seems to have spawned these posts, I’d love to see more real academic style accreditation in crypto industry whitepapers. Other than Bitcoin’s Whitepaper, not many are arguably sound from a formally-correct academic perspective. In short response, the falling out between the pair, Hoskinson and Larimer, clearly had little impact on the conceptual elements of these new projects, Cardano and EOS, because the pair’s falling out predates even the mother concept, Ethereum - but rather the pair’s falling out was one of the key catalysts for Ethereum coming into existence as successfully as it did because it put Charles on a path to spearhead it. Contributed from my iPhone. Please excuse any grammatical mistakes or errors.
author | ned |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t002359345z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["theoretical"],"app":"steemit/0.1"} |
created | 2018-01-07 00:24:00 |
last_update | 2018-01-08 00:57:36 |
depth | 2 |
children | 85 |
last_payout | 2018-01-14 00:24:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 239.268 HBD |
curator_payout_value | 79.217 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,749 |
author_reputation | 94,449,026,656,258 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,644,258 |
net_rshares | 32,693,418,834,595 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
itsascam | 0 | 14,392,087,524 | 100% | ||
steemroller | 0 | 1,334,459,739 | 100% | ||
donaldtrump | 0 | 293,740,196,753 | 100% | ||
enki | 0 | 143,118,132,500 | 1.5% | ||
cob | 0 | 1,753,236,038,706 | 100% | ||
methodise | 0 | 25,577,882,576 | 100% | ||
lovelace | 0 | 235,928,419,207 | 100% | ||
acidyo | 0 | 1,374,152,026,459 | 10% | ||
ashe-oro | 0 | 0 | 0% | ||
badger311 | 0 | 33,128,475,565 | 100% | ||
badger313 | 0 | 34,283,188,424 | 100% | ||
badger312 | 0 | 34,140,052,981 | 100% | ||
badger316 | 0 | 35,313,896,950 | 100% | ||
badger319 | 0 | 35,791,969,879 | 100% | ||
badger3101 | 0 | 35,429,961,258 | 100% | ||
badger3111 | 0 | 33,282,626,044 | 100% | ||
badger3121 | 0 | 35,489,241,434 | 100% | ||
badger3131 | 0 | 33,952,054,861 | 100% | ||
badger3141 | 0 | 34,376,221,788 | 100% | ||
badger3171 | 0 | 34,283,329,182 | 100% | ||
badger3181 | 0 | 33,527,064,183 | 100% | ||
badger3191 | 0 | 35,828,920,252 | 100% | ||
badger3112 | 0 | 33,527,081,428 | 100% | ||
badger3132 | 0 | 34,866,553,505 | 100% | ||
badger3162 | 0 | 34,368,460,436 | 100% | ||
badger3113 | 0 | 35,275,629,846 | 100% | ||
badger3123 | 0 | 33,904,177,685 | 100% | ||
badger3133 | 0 | 34,390,159,440 | 100% | ||
badger3153 | 0 | 35,770,430,323 | 100% | ||
badger3163 | 0 | 34,507,995,387 | 100% | ||
badger3193 | 0 | 34,627,672,121 | 100% | ||
badger3114 | 0 | 34,430,509,070 | 100% | ||
badger3124 | 0 | 34,072,443,820 | 100% | ||
badger3144 | 0 | 33,690,749,779 | 100% | ||
badger3154 | 0 | 33,383,759,634 | 100% | ||
badger3164 | 0 | 32,862,522,628 | 100% | ||
badger3174 | 0 | 34,166,146,485 | 100% | ||
badger3194 | 0 | 35,266,975,529 | 100% | ||
badger3105 | 0 | 34,860,516,605 | 100% | ||
badger3135 | 0 | 34,638,576,044 | 100% | ||
badger3145 | 0 | 33,044,295,977 | 100% | ||
badger3155 | 0 | 35,336,653,995 | 100% | ||
badger3175 | 0 | 34,129,904,171 | 100% | ||
badger3195 | 0 | 33,250,578,666 | 100% | ||
badger3106 | 0 | 31,845,177,545 | 100% | ||
badger3116 | 0 | 35,061,435,537 | 100% | ||
badger3126 | 0 | 35,249,889,200 | 100% | ||
badger3136 | 0 | 33,784,008,861 | 100% | ||
badger3146 | 0 | 32,395,567,180 | 100% | ||
badger3156 | 0 | 33,305,734,778 | 100% | ||
badger3166 | 0 | 34,153,572,667 | 100% | ||
badger3176 | 0 | 33,818,648,248 | 100% | ||
badger3186 | 0 | 34,347,607,409 | 100% | ||
badger3196 | 0 | 34,488,071,493 | 100% | ||
badger3107 | 0 | 34,204,191,189 | 100% | ||
badger315 | 0 | 33,230,832,592 | 100% | ||
badger318 | 0 | 35,179,358,818 | 100% | ||
badger3151 | 0 | 35,374,608,266 | 100% | ||
badger3161 | 0 | 34,087,290,793 | 100% | ||
badger3122 | 0 | 35,106,070,731 | 100% | ||
badger3142 | 0 | 34,857,916,106 | 100% | ||
badger3152 | 0 | 35,733,590,252 | 100% | ||
badger3172 | 0 | 32,995,965,143 | 100% | ||
badger3182 | 0 | 35,012,885,868 | 100% | ||
badger3192 | 0 | 34,051,843,084 | 100% | ||
badger3143 | 0 | 33,716,680,378 | 100% | ||
badger3173 | 0 | 34,749,919,067 | 100% | ||
badger3104 | 0 | 33,597,560,303 | 100% | ||
badger3134 | 0 | 32,466,388,055 | 100% | ||
badger3184 | 0 | 34,064,444,329 | 100% | ||
badger3115 | 0 | 33,817,742,162 | 100% | ||
badger3165 | 0 | 35,676,113,783 | 100% | ||
badger3185 | 0 | 34,206,184,244 | 100% | ||
badger314 | 0 | 34,450,078,919 | 100% | ||
badger317 | 0 | 35,371,186,232 | 100% | ||
badger3102 | 0 | 34,343,979,935 | 100% | ||
badger3103 | 0 | 34,192,623,589 | 100% | ||
badger3125 | 0 | 33,905,421,884 | 100% | ||
badger3183 | 0 | 33,771,840,046 | 100% | ||
noganoo | 0 | -13,407,336,237 | -100% | ||
dahaz159 | 0 | 28,569,084,334 | 100% | ||
lukestokes | 0 | 79,181,258,478 | 5% | ||
damirkatusic | 0 | 28,184,350,027 | 49% | ||
dashpaymag | 0 | 211,848,082,104 | 100% | ||
alao | 0 | 3,512,891,189 | 9% | ||
fulltimegeek | 0 | 58,085,746,046 | 39% | ||
podrock | 0 | 2,886,333,915 | 100% | ||
dudutaulois | 0 | 9,898,260,268 | 10% | ||
lenatramper | 0 | 2,345,704,008 | 10% | ||
ekitcho | 0 | 229,740,990,263 | 7% | ||
cmorton | 0 | 6,640,483,134 | 100% | ||
jankasparec | 0 | 0 | 100% | ||
richardcrill | 0 | 144,634,161,032 | 100% | ||
cryptohazard | 0 | 6,618,625,683 | 100% | ||
nbindustries | 0 | 0 | 100% | ||
decentralizedlaw | 0 | 206,688,901 | 100% | ||
hql2016 | 0 | 12,467,038,413 | 100% | ||
triverse | 0 | 1,923,972,186 | 10% | ||
jenkinrocket | 0 | 29,564,412,218 | 36% | ||
thejohalfiles | 0 | 3,848,259,342,577 | 10% | ||
teamhumble | 0 | 56,930,581,792 | 10% | ||
skypal | 0 | 3,218,150,902 | 6% | ||
plankton | 0 | -1,305,512,461 | -100% | ||
liotap | 0 | 377,282,970,146 | 47% | ||
achilles | 0 | 1,636,068,787 | 100% | ||
gric | 0 | 75,566,534,903 | 100% | ||
arsenal49 | 0 | 2,924,104,165 | 2% | ||
cryptodoom | 0 | 0 | 100% | ||
randykrafft | 0 | 17,688,446,834 | 50% | ||
abhi3700 | 0 | 34,120,824,516 | 100% | ||
btcmillionaire | 0 | 274,722,437,815 | 100% | ||
quantumevolution | 0 | 592,992,500 | 100% | ||
calmhands | 0 | 530,644,608 | 100% | ||
pagandance | 0 | 9,379,679,372 | 50% | ||
ivarketils | 0 | 10,136,063,617 | 100% | ||
fredrikaa | 0 | 347,680,952,209 | 100% | ||
wijuwiju | 0 | 0 | 100% | ||
almost-digital | 0 | 1,006,814,318,086 | 100% | ||
satoshibit | 0 | 11,670,925,209 | 100% | ||
landrew | 0 | 614,860,000 | 100% | ||
robertvogt | 0 | 1,354,742,633 | 5% | ||
soa432 | 0 | 597,836,800 | 100% | ||
coinstar | 0 | 619,520,000 | 100% | ||
s3cr3t | 0 | 619,520,000 | 100% | ||
howtostartablog | 0 | 9,537,430,800 | 4% | ||
fproductions | 0 | 5,847,185,191 | 100% | ||
karr | 0 | 193,555,732,589 | 100% | ||
quantumhealing | 0 | 0 | 100% | ||
stefanmoe | 0 | 15,940,183,526 | 100% | ||
newalturim | 0 | 9,372,806,172 | 100% | ||
travelnotes | 0 | 597,836,800 | 100% | ||
victorsun | 0 | 0 | 100% | ||
harryhoudinei | 0 | 605,282,500 | 100% | ||
cain342 | 0 | 605,286,229 | 100% | ||
planetenamek | 0 | 11,530,807,965 | 100% | ||
val.halla | 0 | 3,814,506,249 | 10% | ||
the.duke | 0 | 623,142,143 | 100% | ||
ma8trix | 0 | 33,899,779,389 | 100% | ||
truth-art-love | 0 | 614,503,071 | 100% | ||
eastmael | 0 | 34,918,680,079 | 100% | ||
arrkiin | 0 | 15,960,958,379 | 100% | ||
baylortomcat | 0 | 607,381,228 | 100% | ||
mrblinddraw | 0 | 313,489,782 | 1% | ||
scottisatthepool | 0 | 617,220,000 | 100% | ||
abuyeti | 0 | 5,474,397,493 | 100% | ||
steemed-proxy | 0 | 18,882,735,910,326 | 100% | ||
agorabits | 0 | 615,320,000 | 100% | ||
gchan129 | 0 | 348,306,468 | 100% | ||
mrblaker | 0 | 6,889,950,377 | 100% | ||
brixx | 0 | 615,320,000 | 100% | ||
idlebright | 0 | 5,495,804,208 | 100% | ||
drop-bear-beryl | 0 | 617,220,000 | 100% | ||
socialspace | 0 | 2,871,481,865 | 10% | ||
mkauai | 0 | 623,045,623 | 100% | ||
dhouse | 0 | 4,266,567,772 | 100% | ||
lloydrough | 0 | 949,392,694 | 100% | ||
preciousmettle-x | 0 | 977,955,756 | 100% | ||
berlelund | 0 | 0 | 100% | ||
zapncrap | 0 | 8,178,181,446 | 50% | ||
danowan | 0 | 615,320,000 | 100% | ||
bkonjevi | 0 | 615,320,000 | 100% | ||
wizarty | 0 | 7,636,144,820 | 100% | ||
blocksafari | 0 | 615,320,000 | 100% | ||
parceval | 0 | 133,679,000,785 | 100% | ||
arwinzen | 0 | 615,434,094 | 100% | ||
heylookitzme | 0 | 615,320,000 | 100% | ||
hilesfiles | 0 | 1,230,177,818 | 100% | ||
giovannicic | 0 | 0 | 100% | ||
xzod | 0 | 615,320,000 | 100% | ||
patrickzhou | 0 | 7,218,909,322 | 100% | ||
spacebird89 | 0 | 672,724,721 | 100% | ||
luoq | 0 | 58,669,560,047 | 100% | ||
zillionnaire | 0 | 0 | 0% | ||
narla.ghelo | 0 | 178,205,000 | 100% | ||
cbabbage | 0 | 615,320,000 | 100% | ||
anfego | 0 | 606,090,200 | 100% | ||
emantas | 0 | 0 | 100% | ||
b-2 | 0 | 606,090,200 | 100% | ||
sschechter | 0 | 29,508,835,671 | 100% | ||
gonzoduke | 0 | 605,637,100 | 100% | ||
blockpanda | 0 | 605,637,100 | 100% | ||
daneshbaetabrizi | 0 | 614,860,000 | 100% | ||
blogbyjesse | 0 | 568,745,500 | 100% | ||
mrdupin | 0 | 581,399,330 | 100% | ||
steem82 | 0 | 230,273,217 | 100% | ||
amannin | 0 | 614,860,000 | 100% | ||
matthiasjohn | 0 | 297,856,745 | 100% | ||
binodnp | 0 | 614,860,000 | 100% | ||
epicswarm | 0 | 0 | 100% | ||
cryptosism | 0 | 0 | 100% | ||
dreday-lee | 0 | 1,160,494,685 | 100% | ||
helleagy | 0 | 1,096,665,681 | 100% | ||
energyaddict22 | 0 | 1,187,912,000 | 100% | ||
lordprime | 0 | 0 | 100% | ||
winestein | 0 | 1,160,489,496 | 100% | ||
dcj | 0 | 377,225,598 | 100% | ||
mandelsage | 0 | 614,500,000 | 100% | ||
palik | 0 | 1,096,661,986 | 100% | ||
yepes | 0 | 1,082,599,578 | 100% | ||
iamdrock | 0 | 0 | 100% | ||
waldbach | 0 | 614,500,000 | 100% | ||
cryptoexplorer7 | 0 | 916,784,908 | 100% | ||
wargliis | 0 | 980,610,696 | 100% | ||
nicholasleeson | 0 | 1,096,658,621 | 100% | ||
teemo81 | 0 | 1,160,484,599 | 100% | ||
orst | 0 | 1,119,867,361 | 100% | ||
syafiq2409 | 0 | 577,630,000 | 100% | ||
yosohaso | 0 | 568,412,500 | 100% | ||
akassel | 0 | 1,160,484,069 | 100% | ||
posdo | 0 | 1,160,483,880 | 100% | ||
squidgod | 0 | 1,003,818,464 | 100% | ||
memorysaver | 0 | 0 | 100% | ||
mirkosche | 0 | 605,285,524 | 100% | ||
cardanofan | 0 | 0 | 100% | ||
almariah | 0 | 159,758,662 | 100% | ||
life-aceh | 0 | 0 | 100% | ||
dtube-alfa | 0 | 0 | 100% | ||
kabir88 | 0 | 0 | 100% | ||
voluntary-io | 0 | 0 | 100% | ||
theneverafter | 0 | 0 | 100% | ||
andreicristian90 | 0 | 0 | 100% | ||
kaichancoder | 0 | 0 | 100% | ||
bandidoazteca | 0 | 0 | 100% | ||
bardealot | 0 | 0 | 100% | ||
cryptolions | 0 | 0 | 100% | ||
grinbuck | 0 | 0 | 100% | ||
amitibikram | 0 | 0 | 100% |
So I don't understand this stuff nearly as much as you do but what attracted me to Caranado was the ability for on chain upgrades. It's not implemented yet so technically they are still hard forking. The space is looking for an Etherum killer and Ripple ain't it. I can't wait for SMT to get released!!
author | alao |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t041113250z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:11:15 |
last_update | 2018-01-07 04:11:15 |
depth | 3 |
children | 3 |
last_payout | 2018-01-14 04:11: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 | 302 |
author_reputation | 23,510,767,447,737 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,676,404 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kabir88 | 0 | 0 | 100% |
@ned thanks for sharing with us the timeline!
author | alexandraioana26 |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180111t092410307z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"} |
created | 2018-01-11 09:24:09 |
last_update | 2018-01-11 09:24:09 |
depth | 3 |
children | 0 |
last_payout | 2018-01-18 09:24: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 | 45 |
author_reputation | 9,768,002,864,979 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,708,736 |
net_rshares | 0 |
You upvote a comment by around a thousand dollars and you post a list of occurrences with so much context and so many facts missing as if it has any value at all. Somewhat ridiculous.
author | benjojo |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t160507919z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 16:05:06 |
last_update | 2018-01-07 16:05:06 |
depth | 3 |
children | 2 |
last_payout | 2018-01-14 16:05:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.265 HBD |
curator_payout_value | 0.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 120,749,050,383,122 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,791,843 |
net_rshares | 32,866,211,405 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
noganoo | 0 | 12,901,399,021 | 100% | ||
arisa | 0 | 3,782,479,958 | 100% | ||
little-pepper | 0 | 974,022,069 | 100% | ||
chocolate-ghost | 0 | 1,458,152,493 | 100% | ||
plankton | 0 | 1,263,056,771 | 100% | ||
jefpatat | 0 | 11,048,297,249 | 100% | ||
cryptolito | 0 | 614,860,000 | 100% | ||
ukup | 0 | 823,943,844 | 100% |
If you want copies of what I've got, let me know! Could be quite a collab...
author | berniesanders |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t141111127z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 14:11:09 |
last_update | 2018-01-08 14:11:09 |
depth | 3 |
children | 1 |
last_payout | 2018-01-15 14:11:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.838 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 600,251,775,828,524 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,011,953 |
net_rshares | 904,347,173,082 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 123,309,352,414 | 100% | ||
nextgencrypto | 0 | 21,531,655,051 | 100% | ||
danknugs | 0 | 8,687,359,362 | 100% | ||
the.bot | 0 | 164,058,928,740 | 100% | ||
ozchartart | 0 | 94,953,703,804 | 100% | ||
thecyclist | 0 | 16,484,061,280 | 100% | ||
engagement | 0 | 11,499,839,580 | 100% | ||
headsink | 0 | 2,500,556,949 | 100% | ||
theyeti | 0 | 8,074,377,038 | 100% | ||
randomthoughts | 0 | 9,695,963,618 | 100% | ||
thedelegator | 0 | 10,373,188,885 | 100% | ||
thesloth | 0 | 5,393,368,326 | 100% | ||
ngc | 0 | 427,040,590,953 | 100% | ||
narla.ghelo | 0 | 175,132,500 | 100% | ||
mrdupin | 0 | 569,094,582 | 100% |
Some big details there... A bit disappointing he didn't just stay with Steem...
author | btcmillionaire |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t024308738z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 02:42:54 |
last_update | 2018-01-07 02:42:54 |
depth | 3 |
children | 5 |
last_payout | 2018-01-14 02:42:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.960 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 8,659,596,341,168 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,664,066 |
net_rshares | 303,753,197,271 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptodoom | 0 | 0 | 100% | ||
btcmillionaire | 0 | 281,111,331,718 | 100% | ||
stefanmoe | 0 | 15,601,030,685 | 100% | ||
introvertspeaks | 0 | 1,259,336,288 | 100% | ||
globalone | 0 | 593,783,800 | 100% | ||
spacebird89 | 0 | 659,134,322 | 100% | ||
narla.ghelo | 0 | 165,915,000 | 100% | ||
mrdupin | 0 | 547,561,273 | 100% | ||
helleagy | 0 | 1,073,455,825 | 100% | ||
yepes | 0 | 1,109,004,445 | 100% | ||
nicholasleeson | 0 | 1,073,448,915 | 100% | ||
yosohaso | 0 | 559,195,000 | 100% | ||
dtube-alfa | 0 | 0 | 100% |
Thanks Ned. I have invested in Cardano for following reasons: 1.Cardano's methodologies will be peer reviewed and code will be audited by third party. 2.It talks about Interoperability which no one else is talking. We can't ignore the giant elephant in the room (govt. regulators) and pretend it doesn't exist or impact crypto currencies in any way. Cardano is attempting to make peer reviewed white papers as a gold standard for crypto currencies.
author | cardanofan |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180114t094423632z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-14 09:44:24 |
last_update | 2018-01-14 09:44:24 |
depth | 3 |
children | 1 |
last_payout | 2018-01-21 09:44: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 | 450 |
author_reputation | 1,308,104,787 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,420,570 |
net_rshares | 614,503,440 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptodoom | 0 | 0 | 100% | ||
quantumhealing | 0 | 614,503,440 | 100% | ||
kabir88 | 0 | 0 | 100% |
interesting ..i hope you all find peace
author | coinstar |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t033848131z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:38:45 |
last_update | 2018-01-07 03:38:45 |
depth | 3 |
children | 1 |
last_payout | 2018-01-14 03:38:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.237 HBD |
curator_payout_value | 0.068 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 493,744,090 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,671,904 |
net_rshares | 31,599,621,845 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nutela | 0 | 21,816,928,765 | 100% | ||
marvirafael | 0 | 8,773,070,858 | 100% | ||
rumble | 0 | 0 | 100% | ||
nicholasleeson | 0 | 1,009,622,222 | 100% |
you sound salty
author | cryptofeez |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180724t211441179z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-07-24 21:14:42 |
last_update | 2018-07-24 21:14:42 |
depth | 3 |
children | 0 |
last_payout | 2018-07-31 21:14: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 | 15 |
author_reputation | 552,241,539,164 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,857,987 |
net_rshares | 0 |
upvote because things gets personal and religious way too quickly in here. And this is very scary for everyone, specially newcomers. We need more academic discussions that avoid *ad hominem* attacks.
author | cryptohazard |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t165105709z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 16:51:06 |
last_update | 2018-01-08 16:51:06 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 16:51: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 | 199 |
author_reputation | 17,111,780,434,071 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,042,658 |
net_rshares | 609,166,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bkonjevi | 0 | 609,166,800 | 100% |
Very informative!
author | cryptosism |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180114t021604407z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-14 02:16:06 |
last_update | 2018-01-14 02:16:06 |
depth | 3 |
children | 0 |
last_payout | 2018-01-21 02:16: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 | 17 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,357,632 |
net_rshares | 0 |
That's how analysis is done. Health in their hands @ned
author | darksea |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180110t001132879z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"} |
created | 2018-01-10 00:11:39 |
last_update | 2018-01-10 00:11:39 |
depth | 3 |
children | 0 |
last_payout | 2018-01-17 00:11: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 | 55 |
author_reputation | 2,584,855,389,933 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,366,790 |
net_rshares | 0 |
Wow, nice info, thanks for sharing this with us.
author | davidconstantine |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t105638503z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 10:54:48 |
last_update | 2018-01-08 10:54:48 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 10:54:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.538 HBD |
curator_payout_value | 0.174 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 48 |
author_reputation | 1,789,023,643,502 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,974,301 |
net_rshares | 65,596,256,172 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davidconstantine | 0 | 65,596,256,172 | 100% |
Ethereum is best crypto
author | davordm |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180115t092050796z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-15 09:20:54 |
last_update | 2018-01-15 09:20:54 |
depth | 3 |
children | 1 |
last_payout | 2018-01-22 09:20: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 | 23 |
author_reputation | 293,169,590,484 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,659,814 |
net_rshares | 0 |
hahahaha this whole thing rules. while we are talking about controversial steem stuff, anyone want to talk about how much steem the founders own and why and what are they going to do with it?
author | dhouse |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t233936656z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 23:39:36 |
last_update | 2018-01-09 23:39:36 |
depth | 3 |
children | 0 |
last_payout | 2018-01-16 23:39: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 | 192 |
author_reputation | 4,150,202,158,075 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,361,805 |
net_rshares | 0 |
I like boobs
author | duartenunes |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t165816801z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 16:59:36 |
last_update | 2018-01-08 16:59:36 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 16:59: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 | 12 |
author_reputation | 10,747,053,111,376 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,044,290 |
net_rshares | 0 |
Wow Nice Share How can I see the full event?
author | fahedawan |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t192346370z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 19:23:45 |
last_update | 2018-01-09 19:23:45 |
depth | 3 |
children | 0 |
last_payout | 2018-01-16 19:23: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 | 44 |
author_reputation | 7,341,724,772 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,321,813 |
net_rshares | 0 |
Now I know why Satoshi Nakamoto remains incognito. Otherwise he would have wasted a lot of his energy, being forced to, defend each of his original choices and comment on each new coin and technology.
author | febinkk |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t153041603z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 15:30:27 |
last_update | 2018-01-07 15:30:27 |
depth | 3 |
children | 1 |
last_payout | 2018-01-14 15:30:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.064 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 6,009,194,830 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,785,048 |
net_rshares | 6,528,017,172 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tiagopaixao | 0 | 1,373,917,102 | 100% | ||
pchal | 0 | 614,503,785 | 100% | ||
gchan129 | 0 | 339,598,806 | 100% | ||
mkauai | 0 | 585,910,454 | 100% | ||
poetong | 0 | 615,320,000 | 100% | ||
lawnandmower | 0 | 605,637,100 | 100% | ||
technicalwealth | 0 | 644,405,560 | 100% | ||
auburnnnnn | 0 | 605,637,100 | 100% | ||
dreday-lee | 0 | 1,143,087,265 | 100% | ||
gjones15 | 0 | 0 | 100% |
pretty nice analysis you have done.
author | fproductions |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t153256241z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 15:33:00 |
last_update | 2018-01-07 15:33:00 |
depth | 3 |
children | 2 |
last_payout | 2018-01-14 15:33:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.490 HBD |
curator_payout_value | 0.822 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 35 |
author_reputation | 42,945,048,272,112 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,785,599 |
net_rshares | 327,082,455,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptodoom | 0 | 0 | 100% | ||
coin-news | 0 | 326,356,677,986 | 100% | ||
narla.ghelo | 0 | 168,987,500 | 100% | ||
mrdupin | 0 | 556,789,834 | 100% | ||
dtube-alfa | 0 | 0 | 100% |
how interesting...dpos didnt exist when dan and charles were talking in the early days about the basic concept of bitassets (which is what bitshares was about.) And btw ned, at what point did u plan on mentioning that you kicked me from your "elite" steem channel, stole my concepts of community/tag coins that are recorded on record before u ever "envisioned" smt, labeled them "SMT", downvoted the whaletank u said was "better than DASH DAO and worker proposals" https://s10.postimg.org/yauxm3v1l/image-1.png and offered 750k steem in early days for me to sell out to you? Get off the high horse...people dont fall for it.
author | fuzzyvest |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t165333173z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1","image":["https://s10.postimg.org/yauxm3v1l/image-1.png"]} |
created | 2018-01-08 16:53:39 |
last_update | 2018-01-08 17:01:45 |
depth | 3 |
children | 2 |
last_payout | 2018-01-15 16:53: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 | 630 |
author_reputation | 16,076,269,237,260 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,043,175 |
net_rshares | 1,183,855,561 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
quantumevolution | 0 | 568,412,500 | 100% | ||
quantumhealing | 0 | 0 | 100% | ||
ping77 | 0 | 615,443,061 | 100% |
I'd read that book.
author | gchan129 |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t171542622z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 17:15:42 |
last_update | 2018-01-07 17:15:42 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 17:15: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 | 19 |
author_reputation | 455,990,084,946 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,802,958 |
net_rshares | 0 |
Putting it out there @ned. I've never spoken to @dan directly. I know of him, and his history.. and I appreciate his intentions. At some point if you want to talk on discord or email, I'm in email intelliguy@tuta.io -- in all the work you do, I think it would be worth your while to spend 5 minutes with a conversation with me when you are ready on discord or email. I'm a trained systems analysist with years of business. I'd like to talk to you if you can afford the time.
author | intelliguy |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180121t082316449z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned","dan"],"app":"steemit/0.1"} |
created | 2018-01-21 08:23:18 |
last_update | 2018-01-21 08:23:18 |
depth | 3 |
children | 0 |
last_payout | 2018-01-28 08:23: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 | 476 |
author_reputation | 62,276,657,564,898 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,052,401 |
net_rshares | 0 |
well this was probably the best comment I ever read on steemit and I read quite a few. Don't wanna sound like I'm licking your boots cause I just realized who you are (the Big Ned:) but hats off bro. There should be a movie made about it, lovely drama. And hopefully those tapes won't ever have to get to any lawyer! I cheer for both EOS and ADA, that's how crypto space grows, despite the ego clashes. Be well @ned!
author | jankasparec |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180116t050210852z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"} |
created | 2018-01-16 05:02:12 |
last_update | 2018-01-16 05:02:12 |
depth | 3 |
children | 0 |
last_payout | 2018-01-23 05:02: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 | 416 |
author_reputation | 68,292,610,382,616 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,861,719 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kabir88 | 0 | 0 | 100% |
> Contributed from my iPhone. Please excuse any grammatical mistakes or errors. Did you type that or mix in speech to text?
author | jerrybanfield |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t132937493z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 13:29:36 |
last_update | 2018-01-08 13:30:36 |
depth | 3 |
children | 1 |
last_payout | 2018-01-15 13:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 362,393,802,961,900 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,003,127 |
net_rshares | 0 |
Woooooowhaaaa....t >Luckily this is nearly 1/1000th of the gory details and barely magnified! Ive got all the rest in my journals (and tapes from when things got dicey) (that get released by my lawyers if I die (/not only if I am killed/) before deciding to include or not include these chapters in a book). Oh I see ... and the plot thickens. If you decide to publish would it be only in book form or series on steemit or some other platform ?
author | johnchamberlain |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t091252184z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 09:12:57 |
last_update | 2018-01-07 09:45:00 |
depth | 3 |
children | 1 |
last_payout | 2018-01-14 09:12:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 447 |
author_reputation | 368,051,311,646 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,718,498 |
net_rshares | 3,146,719,097 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
johnchamberlain | 0 | 3,146,719,097 | 100% |
Thx Ned!
author | knircky |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t000610574z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 00:06:09 |
last_update | 2018-01-08 00:06:09 |
depth | 3 |
children | 1 |
last_payout | 2018-01-15 00:06:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 13.078 HBD |
curator_payout_value | 4.357 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8 |
author_reputation | 212,905,587,244,262 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,872,245 |
net_rshares | 1,663,667,015,019 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
knircky | 0 | 1,663,667,015,019 | 100% | ||
cryptodoom | 0 | 0 | 100% | ||
dtube-alfa | 0 | 0 | 100% |
thanks for sharing!
author | leftbank |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t030548718z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:05:48 |
last_update | 2018-01-07 03:05:48 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 03:05:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.438 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 55,043,916,818,247 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,667,316 |
net_rshares | 44,876,409,766 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
travelnotes | 0 | 607,129,600 | 100% | ||
leftbank | 0 | 43,213,238,531 | 100% | ||
nicholasleeson | 0 | 1,056,041,635 | 100% |
Thank you, Ned. To me, that context is important and helpful because without it, people imagine in the details. So much of the speculative valuation in the cryptocurrency space relies on sentiment driven by one-sided perspectives on the personalities involved. That increases the importance of individual actions and reputation **and** on getting accurate information about the history of the people involved. I wonder how many posts will talk about your thousand dollar vote. :)
author | lukestokes |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t014238334z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:42:39 |
last_update | 2018-01-07 01:42:39 |
depth | 3 |
children | 3 |
last_payout | 2018-01-14 01:42:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.871 HBD |
curator_payout_value | 0.590 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 480 |
author_reputation | 556,640,380,599,219 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,655,915 |
net_rshares | 252,131,899,336 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
skypal | 0 | 3,218,150,902 | 6% | ||
cryptodoom | 0 | 0 | 100% | ||
pagandance | 0 | 9,379,679,372 | 50% | ||
surfyogi | 0 | 203,840,901,656 | 100% | ||
satoshibit | 0 | 11,414,421,359 | 100% | ||
themystic | 0 | 13,831,693,891 | 100% | ||
mejustandrew | 0 | 8,799,360,227 | 100% | ||
lawnandmower | 0 | 614,860,000 | 100% | ||
brindapr | 0 | 0 | 100% | ||
nicholasleeson | 0 | 1,032,831,929 | 100% | ||
dtube-alfa | 0 | 0 | 100% |
Very good information. I'm sort of disappointed with how Dan jumps from project to project and talks dirt about other projects. Charles never does that (as far as i know). It would however be very interesting to to see Dan and Charles go on the record and discuss this more on the tech side.
author | ma8trix |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t033719094z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:37:18 |
last_update | 2018-01-07 03:37:18 |
depth | 3 |
children | 19 |
last_payout | 2018-01-14 03:37:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.390 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 292 |
author_reputation | 299,244,601,106 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,671,672 |
net_rshares | 40,153,544,897 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptodoom | 0 | 0 | 100% | ||
quantumhealing | 0 | 0 | 100% | ||
travelnotes | 0 | 619,520,000 | 100% | ||
ma8trix | 0 | 33,391,282,698 | 100% | ||
drop-bear-beryl | 0 | 595,617,300 | 100% | ||
cosmosx | 0 | 615,320,000 | 100% | ||
cpt.laserbeam | 0 | 3,875,756,466 | 100% | ||
helleagy | 0 | 1,056,048,433 | 100% | ||
ktb1964 | 0 | 0 | 100% |
Great breakdown
author | marketanalysis |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t140708119z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 14:07:48 |
last_update | 2018-01-07 14:07:48 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 14:07: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 | 15 |
author_reputation | 159,257,584,031 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,768,631 |
net_rshares | 707,209,799 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marketanalysis | 0 | 707,209,799 | 100% |
Thanks for sharing @cob
author | matthiasjohn |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t084218691z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["cob"],"app":"steemit/0.1"} |
created | 2018-01-08 08:48:36 |
last_update | 2018-01-08 08:48:36 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 08:48: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 | 23 |
author_reputation | 834,004,459,441 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,952,662 |
net_rshares | 0 |
Thank you for chiming in Ned! I for one am glad to have the spirit of competition alive and well within the space and see some disagreement between developers from time to time. It just illustrates that they are actively engaging and truly pushing one another to be their best and produce the best possible products. <i>"If everyone is thinking alike, then somebody isn't thinking." – George S. Patton</i>
author | maven360 |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t014116670z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:41:06 |
last_update | 2018-01-07 01:41:06 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 01:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.126 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 407 |
author_reputation | 1,409,115,525,495 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,655,649 |
net_rshares | 16,630,052,568 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
achilles | 0 | 1,669,457,946 | 100% | ||
maven360 | 0 | 14,960,594,622 | 100% |
I could not agree more on the observation that a lot of whitepapers lack methodology and academic accuracy, which is substituted by layout and marketing mostly!
author | newalturim |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t120121110z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 12:01:21 |
last_update | 2018-01-07 12:16:21 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 12:01:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 22,328,738,866 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,745,448 |
net_rshares | 806,536,579 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
newalturim | 0 | 0 | 100% | ||
ukup | 0 | 806,536,579 | 100% |
So who would you say is Bill and the other Steve?
author | plouto5 |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t022826058z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 02:28:27 |
last_update | 2018-01-09 02:28:27 |
depth | 3 |
children | 2 |
last_payout | 2018-01-16 02:28: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 | 49 |
author_reputation | 88,705,729 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,142,190 |
net_rshares | 0 |
12 "Dan writes post about Ouroboros and comments about Hoskinson ***from his very own viewpoint.*** 13 ***The cult of personality on Steem begs for more!*** Uff!
author | retinart |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180120t024110445z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-20 02:41:09 |
last_update | 2018-01-20 02:41:09 |
depth | 3 |
children | 0 |
last_payout | 2018-01-27 02:41: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 | 162 |
author_reputation | 376,510,125,897 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,762,658 |
net_rshares | 0 |
Omg I love it! I’m a 14 year old in the middle of grown men trying to survive . I’ll just keep on posting and roll with the tide!
author | richard-921 |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t233050331z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 23:30:51 |
last_update | 2018-01-08 23:30:51 |
depth | 3 |
children | 2 |
last_payout | 2018-01-15 23:30:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.692 HBD |
curator_payout_value | 0.551 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 130 |
author_reputation | 7,867,254,486,994 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,111,843 |
net_rshares | 208,182,646,528 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bonapartist | 0 | 0 | 100% | ||
capper2016 | 0 | 4,185,784,777 | 100% | ||
richard-921 | 0 | 203,996,861,751 | 100% | ||
ataleb | 0 | 0 | 100% | ||
rumble | 0 | 0 | 100% | ||
dtube-alfa | 0 | 0 | 100% | ||
yazbrom | 0 | 0 | 100% |
As always @ned and @dan thank you for the platform you have provided. I know many already benefited and will continue to do so that's including me. @ned your feedback is always appreciated as you are the face of STEEM. Thank you for your knowledgeable input. Cheers, @shares
author | shares |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t164957844z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned","dan","shares"],"app":"steemit/0.1"} |
created | 2018-01-08 16:49:51 |
last_update | 2018-01-08 16:51:54 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 16:49: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 | 276 |
author_reputation | 3,918,810,970,357 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,042,423 |
net_rshares | 0 |
MANY of my friends WONT join steemit because of the steem power issues where large investors rule what people see.. and the artistic expression is ruined for those that want to see what is really popular, rather that what is promoted. IT NEEDS TO GET FIXED
author | surfyogi |
---|---|
permlink | re-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180112t091509745z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 09:15:09 |
last_update | 2018-01-12 09:15:09 |
depth | 3 |
children | 0 |
last_payout | 2018-01-19 09:15:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 256 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,959,285 |
net_rshares | 0 |
Right, EOS and cardano new two project.
author | shuvo12dag |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t040125346z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:01:27 |
last_update | 2018-01-07 04:01:27 |
depth | 2 |
children | 0 |
last_payout | 2018-01-14 04:01: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 | 39 |
author_reputation | 4,458,723,860 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,674,961 |
net_rshares | 0 |
Bitshares stands out among the second generation of crypto money with the possibilities offered by users, in fact it is a platform beyond being a crypto money. The most striking feature of this platform is the "crypto-entity". The crypto-entity is the name given to the crypto paral- lel that each user can produce at any time he wants. So anyone entering the system on this side can create their own crypto @cob @ned
author | slayer10 |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180110t001716159z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["cob","ned"],"app":"steemit/0.1"} |
created | 2018-01-10 00:17:15 |
last_update | 2018-01-10 00:17:30 |
depth | 2 |
children | 0 |
last_payout | 2018-01-17 00:17: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 | 418 |
author_reputation | 3,379,610,484,322 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,367,703 |
net_rshares | 0 |
wish my comment would worth 1k (I would even take $1)
author | some-dude |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015953933z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:59:57 |
last_update | 2018-01-07 01:59:57 |
depth | 2 |
children | 7 |
last_payout | 2018-01-14 01:59:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.204 HBD |
curator_payout_value | 0.343 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 537,990,674,741 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,658,163 |
net_rshares | 158,339,114,517 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beanz | 0 | 87,431,549,279 | 4% | ||
fathermayhem | 0 | 0 | 0% | ||
satoshibit | 0 | 11,222,043,471 | 100% | ||
bkonjevi | 0 | 596,860,400 | 100% | ||
luoq | 0 | 56,400,571,537 | 100% | ||
narla.ghelo | 0 | 150,552,500 | 100% | ||
some-dude | 0 | 1,173,900,259 | 100% | ||
dcj | 0 | 371,422,128 | 100% | ||
nicholasleeson | 0 | 992,214,943 | 100% |
dollar on its way
author | beanz |
---|---|
permlink | re-some-dude-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t121347486z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 12:13:48 |
last_update | 2018-01-07 12:13:48 |
depth | 3 |
children | 2 |
last_payout | 2018-01-14 12:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 77,215,574,122,930 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,747,609 |
net_rshares | 2,294,496,553 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
globalone | 0 | 581,477,400 | 100% | ||
native-one | 0 | 562,596,900 | 100% | ||
some-dude | 0 | 1,150,422,253 | 100% |
Really it is worth about $4,000 USD with the SBD around $8 and $500 of the comment going to SBD.
author | jerrybanfield |
---|---|
permlink | re-some-dude-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t133113656z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 13:31:12 |
last_update | 2018-01-08 13:31:12 |
depth | 3 |
children | 3 |
last_payout | 2018-01-15 13:31: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 | 96 |
author_reputation | 362,393,802,961,900 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,003,476 |
net_rshares | 628,036,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
some-dude | 0 | 628,036,638 | 100% |
author | transisto |
---|---|
permlink | re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015847768z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:58:51 |
last_update | 2018-01-07 01:58:51 |
depth | 2 |
children | 1 |
last_payout | 2018-01-14 01:58:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 195.057 HBD |
curator_payout_value | 65.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 330,357,940,720,833 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,658,019 |
net_rshares | 26,530,115,242,202 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
transisto | 0 | 10,621,758,579,554 | 100% | ||
dzid26 | 0 | -2,190,492,215 | -100% | ||
newsflash | 0 | 15,906,298,938,407 | 100% | ||
yakuza | 0 | 3,591,951,204 | 100% | ||
steembe | 0 | 656,265,252 | 100% |
[Explanation for high upvote](https://steemit.com/steem/@transisto/temporarily-pausing-my-anti-abuse-efforts-while-sbd-is-off-the-chart)
author | transisto |
---|---|
permlink | re-transisto-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180110t002025309z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/steem/@transisto/temporarily-pausing-my-anti-abuse-efforts-while-sbd-is-off-the-chart"],"app":"steemit/0.1"} |
created | 2018-01-10 00:20:27 |
last_update | 2018-01-10 00:20:27 |
depth | 3 |
children | 0 |
last_payout | 2018-01-17 00:20:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 218.410 HBD |
curator_payout_value | 72.788 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 330,357,940,720,833 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,368,225 |
net_rshares | 27,245,896,552,188 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
transisto | 0 | 9,117,341,047,194 | 100% | ||
tamim | 0 | 2,871,002,190,496 | 100% | ||
newsflash | 0 | 15,257,062,247,043 | 100% | ||
cryptohappenings | 0 | 491,067,455 | 100% |
Regarding EOS: "I'll check them out when they release something". Fuck this guy. https://www.youtube.com/watch?v=-zftnG6BYu4
author | condra |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t201309847z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"image":["https://img.youtube.com/vi/-zftnG6BYu4/0.jpg"],"links":["https://www.youtube.com/watch?v=-zftnG6BYu4"],"app":"steemit/0.1"} |
created | 2018-01-06 20:13:09 |
last_update | 2018-01-06 20:13:09 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 20:13:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 56,189,611,335,832 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,603,875 |
net_rshares | 5,246,452,685 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vajola | 0 | 5,246,452,685 | 100% |
How relevant it is to benchmark Ouroboros with other protocols now? It's not, because Ouroboros is still in a centralised phase until Q2 2018. It's like accusing a kid not being able to play tennis when he is too small to be able to walk. I would have expected more intellectual honesty from Dan Larimer.
author | cosmosx |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t233704257z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 23:36:54 |
last_update | 2018-01-09 23:36:54 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 23:36: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 | 304 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,361,369 |
net_rshares | 0 |
@dan Time and effort well spent keep at it. thank your for the post
author | craigmeister |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180110t145742736z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-10 14:58:39 |
last_update | 2018-01-10 14:58:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-17 14:58: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 | 67 |
author_reputation | 53,432,967,988 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,517,327 |
net_rshares | 0 |
author | craim100 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t143158696z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 14:31:54 |
last_update | 2018-01-06 14:31:54 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 14:31:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.541 HBD |
curator_payout_value | 0.840 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 5,925,979,116,525 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,536,876 |
net_rshares | 347,954,528,095 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 150,101,027,583 | 100% | ||
craim100 | 0 | 197,853,500,512 | 100% |
A much needed post! Thank you.
author | craim100 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t050524758z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 05:05:24 |
last_update | 2018-01-07 05:05:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 05:05:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.443 HBD |
curator_payout_value | 0.481 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 5,925,979,116,525 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,684,100 |
net_rshares | 195,632,144,551 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
craim100 | 0 | 195,632,144,551 | 100% |
Well done. EOS really is a head above the rest. Makes you wonder what is all the hype over Cardano.
author | cryptochindian |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t070701746z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:07:03 |
last_update | 2018-01-06 07:07:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:07: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 | 99 |
author_reputation | 2,126,266,961,088 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,462,692 |
net_rshares | 0 |
What'a cheap tactic! You should get your work peer reviewed Dan. Cardano is creating something way bigger than you thought. Good luck with your 350 day long "eth killer" cash grab ico and erc20 security tokens. I hope it won't end up like Tezos.
author | cryptodoom |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180219t180747692z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-02-19 18:07:54 |
last_update | 2018-02-19 18:09:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-26 18:07: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 | 245 |
author_reputation | 198,016,990 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,850,384 |
net_rshares | 0 |
I'm heavily invested so I had to clear the air about Ouroboros being Unfit for Decentralised Applications with Charles! 
author | cryptogirll |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t193733712z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"image":["https://steemitimages.com/DQmRHHadqppMYUzwU6m11CL5EWxfD6mBPuAeccnJA8DNApa/IMG_6267.PNG"],"app":"steemit/0.1"} |
created | 2018-01-08 19:37:36 |
last_update | 2018-01-08 19:37:36 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 19:37: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 | 225 |
author_reputation | 196,100,815,925 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,072,515 |
net_rshares | 615,392,896 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
geekmedia | 0 | 615,392,896 | 100% |
ADA has a good project and team. When the market of Crypto currency is stabilized. Cardano will take its place on it
author | d-stepnoy |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t131232490z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 13:07:18 |
last_update | 2018-01-08 13:07:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 13: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 | 116 |
author_reputation | 195,956,283,468 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,998,576 |
net_rshares | 614,860,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
planttrees | 0 | 614,860,000 | 100% |
Technically, if EOS is superior compared to ADA then time will tell if there will eventually be mass adoption.
author | dali.soh |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t094902331z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 09:49:03 |
last_update | 2018-01-06 09:49:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 09:49:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 631,538,961,852 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,486,840 |
net_rshares | 4,455,156,211 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dali.soh | 0 | 4,455,156,211 | 100% |
 https://steemit.com/meme/@daltono/eos-greater-than-cardano-here-is-why-201816t10515180z
author | daltono | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201816t111325616z | ||||||
category | cardamon | ||||||
json_metadata | {"tags":"cardamon","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-01-06 16:13:30 | ||||||
last_update | 2018-01-06 16:13:30 | ||||||
depth | 1 | ||||||
children | 3 | ||||||
last_payout | 2018-01-13 16:13:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 1.716 HBD | ||||||
curator_payout_value | 0.511 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 135 | ||||||
author_reputation | 1,792,030,495,152,214 | ||||||
root_title | "Peer Review of Cardano's Ouroboros" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 27,558,040 | ||||||
net_rshares | 238,961,077,951 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
benjojo | 0 | 17,983,577,418 | 100% | ||
fractalnode | 0 | 0 | 1% | ||
themonetaryfew | 0 | 6,495,563,585 | 1% | ||
sacred-agent | 0 | 23,186,558,341 | 21% | ||
surfyogi | 0 | 166,778,919,537 | 100% | ||
chaka321 | 0 | 11,616,077,819 | 100% | ||
fproductions | 0 | 5,520,526,801 | 100% | ||
eltomos | 0 | 610,227,200 | 100% | ||
coinwww | 0 | 615,320,000 | 100% | ||
daltono | 0 | 5,539,447,250 | 100% | ||
tfloyd | 0 | 614,860,000 | 100% |
hahahahah.
author | fproductions |
---|---|
permlink | re-daltono-re-dan-201816t111325616z-20180107t153447867z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 15:34:51 |
last_update | 2018-01-07 15:34:51 |
depth | 2 |
children | 0 |
last_payout | 2018-01-14 15:34:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.333 HBD |
curator_payout_value | 0.774 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 42,945,048,272,112 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,785,971 |
net_rshares | 306,456,880,548 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coin-news | 0 | 306,456,880,548 | 100% |
author | nasrull |
---|---|
permlink | re-daltono-re-dan-201816t111325616z-20180106t184234061z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 18:42:33 |
last_update | 2018-01-06 18:42:33 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 18:42: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 | 22 |
author_reputation | 7,787,611,289 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,586,645 |
net_rshares | -25,167,914,563 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
benjojo | 0 | -16,194,635,162 | -100% | ||
snowflake | 0 | -8,973,279,401 | -100% |
U dick!
author | surfyogi |
---|---|
permlink | re-daltono-re-dan-201816t111325616z-20180112t093549836z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 09:35:48 |
last_update | 2018-01-12 09:35:48 |
depth | 2 |
children | 0 |
last_payout | 2018-01-19 09:35: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 | 7 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,962,827 |
net_rshares | 0 |
My response to Charles. https://steemit.com/cardano/@dan/asking-the-right-question
author | dan |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t013321891z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/cardano/@dan/asking-the-right-question"],"app":"steemit/0.1"} |
created | 2018-01-07 01:33:21 |
last_update | 2018-01-07 01:33:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 01:33:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 104.209 HBD |
curator_payout_value | 34.691 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 155,470,101,136,708 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,654,589 |
net_rshares | 14,213,976,588,802 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | 13,072,310,614,538 | 100% | ||
fuzzyvest | 0 | 1,000,154,213,910 | 9% | ||
benjojo | 0 | 17,230,338,573 | 100% | ||
noganoo | 0 | 12,648,430,413 | 100% | ||
richardcrill | 0 | 72,924,787,075 | 50% | ||
plankton | 0 | 1,231,215,004 | 100% | ||
pagandance | 0 | 9,156,353,673 | 50% | ||
sacred-agent | 0 | 13,911,935,004 | 13% | ||
alanturing | 0 | 619,561,298 | 100% | ||
bugaev | 0 | 326,858,712 | 100% | ||
sim31 | 0 | 562,596,900 | 100% | ||
mohammad32 | 0 | 6,074,607,340 | 100% | ||
introvertspeaks | 0 | 1,408,166,940 | 100% | ||
narla.ghelo | 0 | 147,480,000 | 100% | ||
blockpanda | 0 | 614,860,000 | 100% | ||
dcj | 0 | 359,815,186 | 100% | ||
palik | 0 | 1,160,488,874 | 100% | ||
yepes | 0 | 1,062,795,927 | 100% | ||
sumitj | 0 | 1,119,871,255 | 100% | ||
technicalsuman | 0 | 951,598,180 | 100% | ||
rikilb | 0 | 0 | 100% |
whoa is this dan larimer? will you share this with charles so they have the opportunity to address and fix these matters?
author | dandida |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t080715804z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 08:07:15 |
last_update | 2018-01-06 08:07:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 08:07: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 | 121 |
author_reputation | 10,492,740,853,640 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,471,445 |
net_rshares | 0 |
I also visited the mentioned Cardano Telegram chat and had a brief chat with Charles, who gave a fiery response to an invitation to attend an EOS meetup, he is I guess somewhat understandably fuming and whereas I welcomed the reasonable exchange of words, in which Charles told me his rants stem from a lack of process and that he wagered 1mm in cash if Dan can have a paper accepted by academic review! @dan
author | darksea |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180110t000419369z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-10 00:04:27 |
last_update | 2018-01-10 00:04:27 |
depth | 1 |
children | 0 |
last_payout | 2018-01-17 00:04: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 | 408 |
author_reputation | 2,584,855,389,933 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,365,674 |
net_rshares | 0 |
DPOS is currently the best option we have... I hope other coins will also switch to it, to save planet earth from evil aliens who brought us Bitcoin so we heat ourselves to death :( 
author | davidconstantine |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t105825854z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmbXZvnLJ9pxB648wjU1NyyyF2tbDqqk51aEZ4UzGhivAx/image.png"]} |
created | 2018-01-08 10:56:33 |
last_update | 2018-01-08 10:57:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 10:56:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.378 HBD |
curator_payout_value | 0.295 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 270 |
author_reputation | 1,789,023,643,502 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,974,638 |
net_rshares | 245,451,028,120 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 170,485,117,749 | 100% | ||
davidconstantine | 0 | 74,965,910,371 | 100% |
good article i just can say that i like beginner wanted to buy cardano but i gave up because it was very complicated
author | davordm |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180115t091855733z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-15 09:19:00 |
last_update | 2018-01-15 09:19:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-22 09:19: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 | 116 |
author_reputation | 293,169,590,484 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,659,545 |
net_rshares | 0 |
i'm not deep enough into this stuff to know who's right or whatever, but cardano is literally just a whitepaper, right? And steem has actually been working for quite some time, right? my $ is on eos.
author | dhouse |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t234116352z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 23:41:15 |
last_update | 2018-01-09 23:41:15 |
depth | 1 |
children | 2 |
last_payout | 2018-01-16 23:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.039 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 4,150,202,158,075 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,362,046 |
net_rshares | 4,185,556,991 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dhouse | 0 | 4,185,556,991 | 100% |
No, Cardano has a running open blockchain with a native token and wallet. Early stage software, but it is working and protecting over $20 billion in value. You could always look at their website/github if you wanted to inform your opinions.
author | brixx |
---|---|
permlink | re-dhouse-re-dan-peer-review-of-cardano-s-ouroboros-20180111t072849435z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-11 07:28:48 |
last_update | 2018-01-11 07:28:48 |
depth | 2 |
children | 1 |
last_payout | 2018-01-18 07:28: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 | 240 |
author_reputation | 5,383,739,840 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,689,137 |
net_rshares | 0 |
i was using literally in the non-literal sense. an open blockchain with a native token and wallet is not what cardano is about. i could literally have that up and running almost instantly, you can pay a service or use forknote and boom, blockchain and token, wallet. that's not what cardano is about though, is it? in their roadmap, you'll see that all they have is a baseline mainnet. None of the features they are promising are finished. That was my point, and it still stands, and I already informed my opinions. "Byron established the baseline for Cardano in allowing users to trade and transfer Ada. Shelley is focused on ensuring that key elements are in place so that the technology grows into a fully decentralised and autonomous system. Expected Q2 2018." so q2 2018 they will hopefully have more than a token that you can transfer.
author | dhouse |
---|---|
permlink | re-brixx-re-dhouse-re-dan-peer-review-of-cardano-s-ouroboros-20180111t155025558z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-11 15:50:18 |
last_update | 2018-01-11 15:50:18 |
depth | 3 |
children | 0 |
last_payout | 2018-01-18 15:50: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 | 847 |
author_reputation | 4,150,202,158,075 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,786,137 |
net_rshares | 0 |
I think with cardano it is clear that people have jumped into something they don’t fully understand because the website looks good. There’s still a tremendous amount of work to be done to get to where they want to be. This certainly isn’t impossible, especially with a massive influx of capital. But top 5 crypto and 25 billion market cap im sorry no way. They haven't even implemented anything yet. Dans right cardano is just a bad copy of DPOS
author | donkeypunch9 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t023001972z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 02:30:00 |
last_update | 2018-01-08 02:30:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 02:30: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 | 446 |
author_reputation | 2,392,471,352 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,894,976 |
net_rshares | 1,160,485,730 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
donkeypunch9 | 0 | 1,160,485,730 | 100% |
I've been interested in Cardano and was wondering how it compared technically to EOS. Now I know, thanks @dan for this eye-opening review. Perhaps I won't invest much in Cardano after all.
author | drakos |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t055504802z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-09 05:55:57 |
last_update | 2018-01-09 05:55:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 05:55: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 | 188 |
author_reputation | 112,280,226,665,329 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,176,401 |
net_rshares | 0 |
I would like to congratulate Dan for keeping it non-personal. Please keep it that way and you'll get the support of me and others.
author | drop-bear-beryl |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180110t061329728z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-10 06:13:33 |
last_update | 2018-01-10 06:13:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-17 06: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 | 131 |
author_reputation | 219,931,714 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,422,949 |
net_rshares | 0 |
Dear dan This comment has nothing to do with this article, I just wanted to let you know that you are absolutely awesome.
author | eliasleo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t044846580z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:48:45 |
last_update | 2018-01-07 04:48:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 04:48:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 150,651,817,445 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,681,714 |
net_rshares | 0 |
Dan is the Mo%*er Fuc&çing boss you all better bow
author | eliasleo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t093511758z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 09:35:12 |
last_update | 2018-01-08 09:35:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 09:35: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 | 50 |
author_reputation | 150,651,817,445 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,960,247 |
net_rshares | 0 |
We enjoy watching Dan go after Cardano, marketing can only take a blockchain so far. Go EOS!
author | eosgo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t060200779z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:02:00 |
last_update | 2018-01-06 06:02:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:02: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 | 92 |
author_reputation | 19,975,856,950,324 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,453,208 |
net_rshares | 709,449,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 92,229,000 | 100% | ||
muad-dib | 0 | 617,220,000 | 100% |
Really great work Great stuff but there it's about ADA Right ? @dan
author | erikvantools |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t155006683z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 15:50:06 |
last_update | 2018-01-06 15:50:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 15:50: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 | 68 |
author_reputation | 761,260,879,328 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,552,934 |
net_rshares | 0 |
Thanks for the share. Special thanks for clearing the difference between Steem and Ouroboros.
author | fahedawan |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t192539419z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 19:25:39 |
last_update | 2018-01-09 19:25:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 19:25: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 | 93 |
author_reputation | 7,341,724,772 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,322,119 |
net_rshares | 0 |
https://steemit.com/@farah-kamran
author | farah-kamran |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t082325551z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/@farah-kamran"],"app":"steemit/0.1"} |
created | 2018-01-09 08:24:00 |
last_update | 2018-01-09 08:24:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 08:24: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 | 33 |
author_reputation | 175,703,680,965 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,199,159 |
net_rshares | 0 |
https://steemit.com/bitcoin/@farah-kamran/bitshares-news
author | farah-kamran |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180112t065603140z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/bitcoin/@farah-kamran/bitshares-news"],"app":"steemit/0.1"} |
created | 2018-01-12 06:56:45 |
last_update | 2018-01-12 06:56:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 06: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 | 56 |
author_reputation | 175,703,680,965 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,937,409 |
net_rshares | 0 |
EOS is my fave coin, I would buy more but I am scared that my private eos key will not work when it comes to the snapshot. Is there a way for someone not technically minded such as I can check if the Public key and Private key pairings work?
author | foovler |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t231925029z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 23:18:57 |
last_update | 2018-01-06 23:18:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 23:18: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 | 241 |
author_reputation | 17,885,206,395,471 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,633,782 |
net_rshares | 0 |
Very interesting post.
author | fproductions |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t153337963z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 15:33:42 |
last_update | 2018-01-07 15:33:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 15:33:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.436 HBD |
curator_payout_value | 0.812 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 42,945,048,272,112 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,785,731 |
net_rshares | 320,386,738,755 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coin-news | 0 | 320,386,738,755 | 100% |
Highly rEsteemed!
author | frankbacon |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t061648316z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:16:48 |
last_update | 2018-01-06 06:16:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:16:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.082 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 36,630,927,301,955 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,455,333 |
net_rshares | 10,952,130,312 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fortified | 0 | 10,869,124,212 | 10% | ||
santanero714 | 0 | 83,006,100 | 100% |
@Dan Charles Hoskinson said he worked on BitShares, Could you explain what work he did? He also was the co-founder of ethurem and worked on ethurem classic but I am unclear on his exact role on these projects.
author | freedoms |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t071616819z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 07:16:18 |
last_update | 2018-01-06 07:16:18 |
depth | 1 |
children | 5 |
last_payout | 2018-01-13 07:16:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.124 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 209 |
author_reputation | 25,461,225,849 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,464,017 |
net_rshares | 14,635,926,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
johnchamberlain | 0 | 3,099,041,535 | 100% | ||
fortified | 0 | 10,869,124,212 | 10% | ||
freedoms | 0 | 667,761,181 | 100% |
Charles left bitshares before we even launched protoshares mining and before any of the innovation in bitshares was conceived. At the time we were still thinking bitshares would be proof of work. The final pegging solution wasn’t locked down until a year after he left. He does get credit for getting me initial funding and attention at the Atlanta conference. Charles is great at raising money. He rides on coat tails of others tech innovation.
author | dan |
---|---|
permlink | re-freedoms-re-dan-peer-review-of-cardano-s-ouroboros-20180106t144128362z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 14:41:27 |
last_update | 2018-01-06 14:41:27 |
depth | 2 |
children | 4 |
last_payout | 2018-01-13 14:41:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.940 HBD |
curator_payout_value | 0.615 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 449 |
author_reputation | 155,470,101,136,708 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,538,905 |
net_rshares | 263,253,896,396 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
benjojo | 0 | 17,701,112,851 | 100% | ||
max-infeld | 0 | 8,732,787,008 | 100% | ||
johnchamberlain | 0 | 3,162,611,618 | 100% | ||
johnsmith | 0 | 50,064,610,200 | 100% | ||
riskdebonair | 0 | 142,869,280,207 | 100% | ||
fortified | 0 | 10,869,124,212 | 10% | ||
sacred-agent | 0 | 22,606,894,382 | 21% | ||
dhouse | 0 | 4,971,521,894 | 100% | ||
ping77 | 0 | 547,744,324 | 100% | ||
paullintilhac | 0 | 606,090,200 | 100% | ||
blockpanda | 0 | 528,779,600 | 100% | ||
tfloyd | 0 | 593,339,900 | 100% |
@dan I love your brutal honesty. I am a seeker of truth, so I resonate with your actions wholeheartedly. Earth is beyond blessed to have you showcasing what a harmonic human being is capable of. Keep up your efforts, you will always have people like me behind you. Infinite love my brother 👽
author | daltono | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201816t10552660z | ||||||
category | cardamon | ||||||
json_metadata | {"tags":"cardamon","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-01-06 15:05:57 | ||||||
last_update | 2018-01-06 15:05:57 | ||||||
depth | 3 | ||||||
children | 1 | ||||||
last_payout | 2018-01-13 15:05:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.198 HBD | ||||||
curator_payout_value | 0.062 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 293 | ||||||
author_reputation | 1,792,030,495,152,214 | ||||||
root_title | "Peer Review of Cardano's Ouroboros" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 27,543,697 | ||||||
net_rshares | 28,132,714,355 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
benjojo | 0 | 15,912,170,595 | 100% | ||
fortified | 0 | 10,869,124,212 | 10% | ||
whyknot | 0 | 734,199,548 | 100% | ||
dallasj | 0 | 617,220,000 | 100% |
Great to know, I kinda figured Charles was riding on coat trails of other tech innovation especially now after him talking about all the "scientific philosophy and a research-first driven approach" and "peer review" happening with Cardano. He imo is appealing to authority instead of proving the math/code/work like Bitcoin is all about and what you have done with Steemit and BitShares. But I agree Charles is great at raising money considering Cardano is worth over $25 billion atm. Anyways, I am greatly interested in the next gen blockchain. This post certainly helped in clearing a lot of questions I had. How often do you review other projects? I know you're extremely busy but I would be curious on what you think of raiblocks which is supposedly an "instant, fee-less, scalable transactions" cryptocurrency. I knew BitShares and steemit already have those features but considering raiblocks marketcap is now bigger than both I am not sure if I am missing something about the appeal of raiblocks. Thanks
author | freedoms |
---|---|
permlink | re-dan-re-freedoms-re-dan-peer-review-of-cardano-s-ouroboros-20180107t130604122z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 13:06:06 |
last_update | 2018-01-07 13:06:06 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 13:06: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 | 1,017 |
author_reputation | 25,461,225,849 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,756,852 |
net_rshares | 0 |
Thank you for this clarification.
author | lukestokes |
---|---|
permlink | re-dan-re-freedoms-re-dan-peer-review-of-cardano-s-ouroboros-20180106t222315951z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 22:23:15 |
last_update | 2018-01-06 22:23:15 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 22:23: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 | 33 |
author_reputation | 556,640,380,599,219 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,625,960 |
net_rshares | 0 |
And to think they declined the payout...
author | gameboy9309 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t065524955z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 06:55:24 |
last_update | 2018-01-08 06:55:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 06:55: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 | 40 |
author_reputation | 17,497,929 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,935,525 |
net_rshares | 0 |
This whole article reads so salty and bitter. It's hard to take in what you're saying when it's from an ego driven perspective. Also can you explain why EOS needs 10 ICOs?
author | gchan129 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t171221198z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 17:12:21 |
last_update | 2018-01-07 17:12:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 17:12:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 455,990,084,946 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,802,328 |
net_rshares | 0 |
I gotta quote Conor McGregor here. "Winners focus on winning. Losers focus on winners."
author | gchan129 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t173608552z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 17:36:09 |
last_update | 2018-01-07 17:36:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 17:36: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 | 87 |
author_reputation | 455,990,084,946 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,807,011 |
net_rshares | 0 |
Dan, When I first heard about this post I was eager to read it. Peer review, and constructive criticism in general is incredibly useful for improving the technology. As an investor in Cardano, I'm open to a realistic assessment from someone outside of the project. Unfortunately, peer review doesn't work when there is a conflict of interest. You can't criticize Cardano whilst at the same time shamelessly shilling EOS, which conveniently, happens to be your project! You can't say "EOS takes 0.2 seconds to process X, and Cardano takes about 2 weeks". All credibility lost. For shame!
author | geekmedia |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180112t015845382z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 01:58:48 |
last_update | 2018-01-12 01:58:48 |
depth | 1 |
children | 2 |
last_payout | 2018-01-19 01:58:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.896 HBD |
curator_payout_value | 0.270 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 593 |
author_reputation | 2,722,979,954 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,892,031 |
net_rshares | 149,434,791,783 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 148,247,928,477 | 100% | ||
quantumhealing | 0 | 583,778,268 | 100% | ||
geekmedia | 0 | 603,085,038 | 100% | ||
scheenbeen | 0 | 0 | 100% |
True. He probably makes some points, but it's still a conflict of interest.
author | scheenbeen |
---|---|
permlink | re-geekmedia-re-dan-peer-review-of-cardano-s-ouroboros-20180221t092158102z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-02-21 09:21:54 |
last_update | 2018-02-21 09:21:54 |
depth | 2 |
children | 0 |
last_payout | 2018-02-28 09:21: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 | 75 |
author_reputation | 185,948,927 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,299,923 |
net_rshares | 0 |
Reasonable point.
author | surfyogi |
---|---|
permlink | re-geekmedia-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094329415z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 09:43:30 |
last_update | 2018-01-12 09:43:30 |
depth | 2 |
children | 0 |
last_payout | 2018-01-19 09:43: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 | 17 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,964,169 |
net_rshares | 0 |
Thank you for giving us an in-depth review, it's always great that people like you inform those that might not have the time or capabilities to do so. This has helped me tremendously in navigating my next investments!
author | gh0stfunk |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t210021940z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 21:00:18 |
last_update | 2018-01-06 21:00:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 21:00: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 | 217 |
author_reputation | 2,135,078,103 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,612,267 |
net_rshares | 0 |
Very interesting article!
author | helleagy |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t203700038z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 20:37:00 |
last_update | 2018-01-07 20:37:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 20:37: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 | 25 |
author_reputation | 57,458,729 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,839,093 |
net_rshares | 707,900,598 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
helleagy | 0 | 707,900,598 | 100% |
EOS is far superior than any of the proposed platforms... Looking forward for EOS wallet launch!
author | hms818 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t064710493z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:47:12 |
last_update | 2018-01-06 06:47:12 |
depth | 1 |
children | 7 |
last_payout | 2018-01-13 06:47:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.982 HBD |
curator_payout_value | 0.287 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 11,503,740,391,093 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,459,726 |
net_rshares | 234,258,305,586 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
condra | 0 | 1,486,083,964 | 5% | ||
hms818 | 0 | 49,876,428,978 | 100% | ||
riskdebonair | 0 | 139,597,464,630 | 100% | ||
ikegass33 | 0 | 28,562,881,543 | 37% | ||
fproductions | 0 | 5,618,524,318 | 100% | ||
thelifeofed | 0 | 619,520,000 | 100% | ||
cyberberry | 0 | 604,400,463 | 100% | ||
mohammad32 | 0 | 5,368,257,649 | 100% | ||
haxxley | 0 | 617,220,000 | 100% | ||
ping77 | 0 | 593,902,554 | 100% | ||
newtonescu | 0 | 0 | 0% | ||
globalone | 0 | 547,634,800 | 100% | ||
markzuckerbergs | 0 | 411,974,972 | 100% | ||
dcj | 0 | 354,011,715 | 100% |
I also think so.
author | fproductions |
---|---|
permlink | re-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180107t153413036z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 15:34:15 |
last_update | 2018-01-07 15:34:15 |
depth | 2 |
children | 0 |
last_payout | 2018-01-14 15:34:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.376 HBD |
curator_payout_value | 0.790 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 16 |
author_reputation | 42,945,048,272,112 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,785,850 |
net_rshares | 312,426,819,779 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
coin-news | 0 | 312,426,819,779 | 100% |
Me too.
author | markzuckerbergs |
---|---|
permlink | re-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180106t075230518z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:52:33 |
last_update | 2018-01-06 07:52:33 |
depth | 2 |
children | 5 |
last_payout | 2018-01-13 07:52:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 3,365,667,565,848 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,469,279 |
net_rshares | 6,067,577,391 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
research-mind | 0 | 6,067,577,391 | 100% |
Happy to see @markzuckerbegs quitting facebook, supporting Steem and cryto-currencies! LOL
author | hms818 |
---|---|
permlink | re-markzuckerbergs-re-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180106t075637546z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["markzuckerbegs"],"app":"steemit/0.1"} |
created | 2018-01-06 07:56:36 |
last_update | 2018-01-06 08:43:51 |
depth | 3 |
children | 3 |
last_payout | 2018-01-13 07:56:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.474 HBD |
curator_payout_value | 0.140 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 90 |
author_reputation | 11,503,740,391,093 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,469,839 |
net_rshares | 63,393,790,104 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
beanz | 0 | 21,857,887,319 | 1% | ||
hms818 | 0 | 40,416,031,706 | 100% | ||
atiselsts | 0 | 1,119,871,079 | 100% |
Agreed my friend!
author | tiger.woods |
---|---|
permlink | re-markzuckerbergs-re-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015309778z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:53:09 |
last_update | 2018-01-07 01:53:09 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 01:53: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 | 17 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,657,278 |
net_rshares | 0 |
Thank you, Dan, for this indepth, and human readable, analysis. So much of what blockchain developers write and share about projectsis vastly over complicated - I applaud you for making this easy to understand. I've always been a believer in the EOS project. Good luck.
author | holoz0r |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t091427989z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 09:14:27 |
last_update | 2018-01-06 09:14:27 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 09:14:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.057 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 565,570,184,076,379 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,481,603 |
net_rshares | 7,256,739,867 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aghunter | 0 | 6,914,396,496 | 9% | ||
rajafahad | 0 | 342,343,371 | 100% |
competition makes for better products. time will tell which platform is superior, maybe both? go eos ! ;)
author | howi |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t061944503z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 06:19:45 |
last_update | 2018-01-09 06:19:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 06:19: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 | 105 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,180,371 |
net_rshares | 0 |
author | hr1 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t105716763z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 10:57:18 |
last_update | 2018-01-06 10:57:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 10:57:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.505 HBD |
curator_payout_value | 0.151 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 7,226,856,136,834 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,497,886 |
net_rshares | 67,737,708,981 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jumowa | 0 | 50,206,502,916 | 63% | ||
me-do | 0 | 12,525,961,713 | 75% | ||
xzod | 0 | 606,090,200 | 100% | ||
kingyj | 0 | 4,399,154,152 | 100% | ||
iqbalaceh | 0 | 0 | 100% |
Interesting..!!
author | hwankyun |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t002929702z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 00:29:21 |
last_update | 2018-01-08 00:29:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 00:29: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 | 15 |
author_reputation | 2,510,266,988 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,875,899 |
net_rshares | 0 |
very good your post
author | idma | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201816t153152510z | ||||||
category | cardamon | ||||||
json_metadata | {"tags":"cardamon","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-01-06 19:32:00 | ||||||
last_update | 2018-01-06 19:32:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-01-13 19:32:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 19 | ||||||
author_reputation | 20,733,001,304 | ||||||
root_title | "Peer Review of Cardano's Ouroboros" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 27,596,309 | ||||||
net_rshares | 0 |
thanks for sharing your post , I am going to start following you I hope you will get back follow me ........
author | indiancrypto |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t172443114z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 17:24:42 |
last_update | 2018-01-08 17:24:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 17:24: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 | 108 |
author_reputation | 12,098,600,378 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,048,992 |
net_rshares | 0 |
I am **provably** be investing more in these two, since I am already anyway. This is going to be Batman vs Superman showdown in their respective domain. Ethereum will soon look like Wonderwoman sitting around the corner. Lol
author | introvertspeaks |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t032539959z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:25:39 |
last_update | 2018-01-07 03:25:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 03:25: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 | 224 |
author_reputation | -4,351,658,764,138 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,670,004 |
net_rshares | 0 |
@dan, Holy sh*t! Enjoyed your post immensely. Salutations. I am JaiChai. Delighted to make your acquaintance. RE: Your Post Never even thought of "subliminal", camouflaged pareto principle-induced outcomes. Wish I didn't miss the 18 Jan 2018 ICO deadline for EOS. Anyway, may you and yours be well and loving life today. Namaste (I recognize the divine in you), JaiChai A belated follow. My bad.
author | jaichai |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180119t142647097z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-19 14:26:57 |
last_update | 2018-01-19 14:52:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-26 14:26:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.812 HBD |
curator_payout_value | 0.930 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 405 |
author_reputation | -5,759,614,035,864 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,637,390 |
net_rshares | 361,666,638,885 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kide | 0 | 104,444,492 | 100% | ||
thing-2 | 0 | 360,234,357,083 | 100% | ||
jaichai | 0 | 1,327,837,310 | 100% |
Great sir, Is it to invest
author | jhdalitaj |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t180448326z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 18:04:48 |
last_update | 2018-01-06 18:04:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 18:04: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 | 27 |
author_reputation | 7,101,069,115 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,579,582 |
net_rshares | 0 |
What a load of garbage. Their approach is suboptimal? Give me a break, their team and approach sets a new standard in the space. EOS, BitShares nor Steem can hold a candle to Cardano.
author | jimbo4350 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t170144642z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 17:01:45 |
last_update | 2018-01-06 17:01:45 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 17:01: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 | 183 |
author_reputation | 19,691,214 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,567,536 |
net_rshares | 617,220,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ckomagan | 0 | 617,220,000 | 100% |
in what way?
author | paullintilhac |
---|---|
permlink | re-jimbo4350-re-dan-peer-review-of-cardano-s-ouroboros-20180106t182717477z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 18:27:15 |
last_update | 2018-01-06 18:27:15 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 18:27: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 | 12 |
author_reputation | 38,849,021,305 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,583,854 |
net_rshares | 0 |
Can you be a bit more specific?
author | transcendence |
---|---|
permlink | re-jimbo4350-re-dan-peer-review-of-cardano-s-ouroboros-20180106t181627494z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 18:16:27 |
last_update | 2018-01-06 18:16:27 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 18:16: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 | 31 |
author_reputation | 345,732,151 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,581,926 |
net_rshares | 0 |
nice~
author | jinhoo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t231848019z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 23:18:57 |
last_update | 2018-01-08 23:18:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 23:18: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 | 5 |
author_reputation | 421,950,284 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,109,768 |
net_rshares | 0 |
nice~
author | jinhoo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t231925301z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 23:19:33 |
last_update | 2018-01-08 23:19:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 23:19: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 | 5 |
author_reputation | 421,950,284 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,109,875 |
net_rshares | 0 |
Thank you for the information
author | joe007 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t074744006z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 07:47:45 |
last_update | 2018-01-08 07:47:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 07:47: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 | 29 |
author_reputation | 1,177,391,771,969 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,943,411 |
net_rshares | 0 |
>I am going to go a step further and claim that much of the academic research and proofs performed by Cardano’s team only bolsters the support and justification of many core DPOS concepts, even if their approach is suboptimal compared to designs of EOS, BitShares, and Steem. Nice, EOS takes it further... introducing DPOS enterprise scale data centers.
author | johnchamberlain |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t110925176z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 11:09:30 |
last_update | 2018-01-06 11:09:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 11:09: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 | 355 |
author_reputation | 368,051,311,646 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,499,954 |
net_rshares | 0 |
ADA is just collecting value to be transferred to EOS once the chain goes live. Same with ETH. It is probably not unreasonable to assume that the market caps of ADA and ETH will move to EOS by Q3 2018.
author | johnsmith |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t001044530z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 00:10:45 |
last_update | 2018-01-07 00:10:45 |
depth | 1 |
children | 3 |
last_payout | 2018-01-14 00:10:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.820 HBD |
curator_payout_value | 0.252 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 201 |
author_reputation | 22,729,726,767,685 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,642,208 |
net_rshares | 213,325,220,522 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
johnsmith | 0 | 52,183,747,139 | 100% | ||
surfyogi | 0 | 153,807,225,795 | 100% | ||
whyknot | 0 | 749,416,119 | 100% | ||
ping77 | 0 | 569,284,831 | 100% | ||
daltono | 0 | 6,015,546,638 | 100% |
Mmm, not sure. ADA/ETH investors are clearly not doing their research before investing. I bet they will miss the boat still holding their worthless bags.
author | whyknot |
---|---|
permlink | re-johnsmith-re-dan-peer-review-of-cardano-s-ouroboros-20180108t141556262z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 14:15:57 |
last_update | 2018-01-08 14:16:12 |
depth | 2 |
children | 2 |
last_payout | 2018-01-15 14:15:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.286 HBD |
curator_payout_value | 0.423 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 153 |
author_reputation | 112,320,686,869 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,012,835 |
net_rshares | 157,513,424,007 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 157,513,424,007 | 100% |
ETH has advantages : it worked first, has a rich ecosystem of dapps that will be released these next months, and strong and skilled leadership (what is killing bitcoin), so it may copy new techniques from EOS or other competitors
author | wimphel |
---|---|
permlink | re-whyknot-re-johnsmith-re-dan-peer-review-of-cardano-s-ouroboros-20180110t062019915z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-10 06:20:21 |
last_update | 2018-01-10 06:20:21 |
depth | 3 |
children | 1 |
last_payout | 2018-01-17 06:20:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.272 HBD |
curator_payout_value | 0.420 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 229 |
author_reputation | 2,490,101,923 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,423,985 |
net_rshares | 159,366,523,113 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 159,366,523,113 | 100% |
Thanks for your post! Please Follow, Upvote & Resteem my post to help us to travel & explore more https://steemit.com/travel/@jonbee/travel-with-us-ep-01-kushtia-sugar-mills-kushtia-bangladesh-bd-steemian
author | jonbee |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t143243330z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/travel/@jonbee/travel-with-us-ep-01-kushtia-sugar-mills-kushtia-bangladesh-bd-steemian"],"app":"steemit/0.1"} |
created | 2018-01-07 14:33:39 |
last_update | 2018-01-07 14:33:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 14:33: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 | 204 |
author_reputation | -455,593,770,537 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,773,936 |
net_rshares | 0 |
Thanks for your post! Please Follow, Upvote & Resteem my post to help us to travel & explore more https://steemit.com/travel/@jonbee/travel-with-us-ep-01-kushtia-sugar-mills-kushtia-bangladesh-bd-steemian
author | jonbee |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t143721614z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/travel/@jonbee/travel-with-us-ep-01-kushtia-sugar-mills-kushtia-bangladesh-bd-steemian"],"app":"steemit/0.1"} |
created | 2018-01-07 14:39:21 |
last_update | 2018-01-07 14:39:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 14:39: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 | 204 |
author_reputation | -455,593,770,537 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,775,131 |
net_rshares | 0 |
As always very successful publication. Innumerable forms of production today, unimaginable years ago
author | juancavillac |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t215638105z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 21:56:36 |
last_update | 2018-01-06 21:56:36 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 21:56: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 | 100 |
author_reputation | 1,560,477,142 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,621,561 |
net_rshares | 400,370,046 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
juancavillac | 0 | 400,370,046 | 100% |
in the real world, an influencer is paid by his/her ability to generate ad revenue or change opinions which are ultimately paid by the end ad buyer or influence buyer. steemit right now is self jerking its esteem power without any end buyers through steem tokens chased by crypto gamblers not much different tulip gamblers. crypto inventors lack understanding of economics.
author | judetheobscure |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t172716276z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 17:27:15 |
last_update | 2018-01-07 17:27:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 17:27:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.933 HBD |
curator_payout_value | 0.977 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 377 |
author_reputation | 9,888,142,763 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,805,253 |
net_rshares | 382,929,338,546 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 382,929,338,546 | 100% |
Recently I have been searching and reading all the stuff from and about you as I am more interested on blockchain technology since joining steem.You are changing the future of internet and behavious @dan. All the best for your upcoming project EOS.
author | katteasis |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t060832043z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"community":"busy","app":"busy/2.2.0"} |
created | 2018-01-06 06:08:36 |
last_update | 2018-01-06 06:08:36 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 06:08: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 | 248 |
author_reputation | 22,664,890,626,849 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,454,173 |
net_rshares | 787,159,946 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joshuaseymour | 0 | 704,153,846 | 100% | ||
santanero714 | 0 | 83,006,100 | 100% |
I was doing that about a year ago and my mind was continually blown by how far ahead he is.
author | richardcrill |
---|---|
permlink | re-katteasis-re-dan-peer-review-of-cardano-s-ouroboros-20180106t081027708z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 08:10:27 |
last_update | 2018-01-06 08:10:27 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 08:10: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 | 91 |
author_reputation | 55,974,657,421,087 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,471,904 |
net_rshares | 0 |
I was so late :(
author | katteasis |
---|---|
permlink | re-richardcrill-re-katteasis-re-dan-peer-review-of-cardano-s-ouroboros-20180106t120119561z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 12:01:24 |
last_update | 2018-01-06 12:01:24 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 12: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 | 16 |
author_reputation | 22,664,890,626,849 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,508,655 |
net_rshares | 0 |
As a highly published researcher in the genomics space, I can assure you that historical peer review is a total scam. Anon review is even scammier. Very high retraction rates and very low reproducibility. The Crypto space should NOT be using an abacus to fact check a calculator. There are better ways to do this now. See RAID reviews. http://raidreviews.org
author | lariat |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t151517155z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["http://raidreviews.org"],"app":"steemit/0.1"} |
created | 2018-01-08 15:15:18 |
last_update | 2018-01-08 15:18:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 15:15: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 | 358 |
author_reputation | 403,326,076,381 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,025,000 |
net_rshares | 0 |
"Furthermore, their algorithm is not “new” but a less secure slower variation of the DPOS algorithm I originally introduced in April 2014. The authors of the paper failed to cite relevant prior art or to justify why their deviations from existing art are an improvement." Thank you @dan for hammering these silly attempts to make a quick buck on other peoples work back to where it belongs, I all along had the feeling that there is nothing better then EOS (STEEM and Bitshares).. Even though I been programming in many periods of my life, I think I will let blockchain programming upto the best minds of today, wow its so exciting to see the future inventions in this space... I am very confident that your projects are the best of today. All the best Lasse Ehlers
author | lasseehlers |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t114155149z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-08 11:41:54 |
last_update | 2018-01-08 11:41:54 |
depth | 1 |
children | 1 |
last_payout | 2018-01-15 11:41:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.093 HBD |
curator_payout_value | 0.678 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 768 |
author_reputation | -19,519,944,625,907 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,982,663 |
net_rshares | 254,507,034,167 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 185,309,910,596 | 100% | ||
ivoteonheros | 0 | 68,615,529,879 | 100% | ||
ping77 | 0 | 581,593,692 | 100% |
Thanks good to know
author | surfyogi |
---|---|
permlink | re-lasseehlers-re-dan-peer-review-of-cardano-s-ouroboros-20180112t093355084z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 09:33:54 |
last_update | 2018-01-12 09:33:54 |
depth | 2 |
children | 0 |
last_payout | 2018-01-19 09:33:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 19 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,962,483 |
net_rshares | 3,851,277,957 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lasseehlers | 0 | 3,851,277,957 | 7% |
Thoughts on ICON's comparison chart Dan? 
author | lifeofahero |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180119t005943661z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"image":["https://steemitimages.com/DQmUFGWk5kbAeuGKH9C4ADHqTF8SANNcFgjRwR57biwtMPK/Screen%20Shot%202018-01-18%20at%204.55.12%20PM.png"],"app":"steemit/0.1"} |
created | 2018-01-19 00:59:45 |
last_update | 2018-01-19 00:59:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-26 00:59: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 | 210 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 30,512,688 |
net_rshares | 0 |
You stopped my ADA FOMO! - THANK YOU!!!!
author | littlelobo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t000409778z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 00:04:09 |
last_update | 2018-01-07 00:04:09 |
depth | 1 |
children | 1 |
last_payout | 2018-01-14 00:04: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 | 40 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,641,221 |
net_rshares | 0 |
it will start again soon. ADA is the ultimate solution for crypto.
author | cryptodoom |
---|---|
permlink | re-littlelobo-re-dan-peer-review-of-cardano-s-ouroboros-20180219t181039526z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-02-19 18:10:45 |
last_update | 2018-02-19 18:10:45 |
depth | 2 |
children | 0 |
last_payout | 2018-02-26 18: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 | 66 |
author_reputation | 198,016,990 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 38,850,951 |
net_rshares | 0 |
> The marketing behind Cardano and Ouroboros is that it is the first “peer reviewed”, “provably secure” proof of stake consensus algorithm. Upon reading their paper it becomes clear to those familiar with BitShares 1.0, Graphene, Steem, and EOS that Ouroboros is a copy of Delegated Proof of Stake (DPoS) with a few counter-productive modifications. Yeah, that really *stuck in my craw* while reading the whitepaper, and I immediately called **bullshit**! Thanks for writing this @dan.
author | lovejoy |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t162845766z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 16:28:45 |
last_update | 2018-01-06 16:28:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 16:28:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.167 HBD |
curator_payout_value | 1.049 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 487 |
author_reputation | 53,556,731,007,030 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,560,976 |
net_rshares | 434,277,774,538 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robrigo | 0 | 238,182,463,191 | 100% | ||
sacred-agent | 0 | 14,491,598,963 | 13% | ||
surfyogi | 0 | 181,603,712,384 | 100% |
Thank you, Dan. I've had a number of people ask me about this and though I've watched a video or two from Charles Hoskinson about Cardano, I felt a pause when I looked into some history. Is it true you and him had a big falling out in the early days of BitShares? Is there somewhere people can read about this history? Related to that, do you have somewhere you send people who are concerned about the BitShares "Great Consolidation" history? I know many investors who avoid BitShares, STEEM, and EOS because they are convinced investors will be screwed. I've been trying to find out more about this, but it's difficult to find the whole story. Currently, it seems to me, a bad decision was made to consolidate BitShares related projects (forgive me if this was during the protoshares/angelshares era, I don't know the timeline well) instead of letting them compete and run free which hurt a lot of investors. It could also be argued that was a necessary action to save BitShares during a time when all cryptocurrency markets were in massive decline. Do you have thoughts you could share or a history you could point to for people with these concerns? Thanks again for doing so much for the cryptocurrency space to build awesome stuff that actually works.
author | lukestokes |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t064638998z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:46:39 |
last_update | 2018-01-06 06:47:15 |
depth | 1 |
children | 43 |
last_payout | 2018-01-13 06:46:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 21.559 HBD |
curator_payout_value | 7.076 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,258 |
author_reputation | 556,640,380,599,219 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,459,656 |
net_rshares | 2,952,048,758,534 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nikolai | 0 | 1,344,522,908,561 | 100% | ||
cryptohead | 0 | 18,850,586,648 | 100% | ||
lakerta06 | 0 | 2,691,915,880 | 100% | ||
ashe-oro | 0 | 385,820,282,805 | 100% | ||
robrigo | 0 | 266,179,984,282 | 100% | ||
jankasparec | 0 | 0 | 100% | ||
themonetaryfew | 0 | 565,003,471,543 | 100% | ||
richardcrill | 0 | 173,804,075,862 | 100% | ||
the-ego-is-you | 0 | 30,577,459,434 | 74% | ||
bitbuddha | 0 | 672,367,699 | 100% | ||
pagandance | 0 | 9,156,353,673 | 50% | ||
sacred-agent | 0 | 39,417,149,180 | 35% | ||
beordo | 0 | 7,343,088,753 | 100% | ||
satoshibit | 0 | 8,785,256,888 | 100% | ||
bitdime | 0 | 619,520,000 | 100% | ||
sim31 | 0 | 593,339,900 | 100% | ||
mdjurek | 0 | 604,032,000 | 100% | ||
akhilvamangari | 0 | 540,067,500 | 100% | ||
research-mind | 0 | 6,174,652,287 | 100% | ||
etheos | 0 | 604,875,600 | 100% | ||
n00th3r | 0 | 604,875,600 | 100% | ||
rawzen | 0 | 603,013,600 | 100% | ||
numerus | 0 | 608,164,133 | 100% | ||
zapncrap | 0 | 15,136,842,312 | 100% | ||
luoq | 0 | 63,324,675,878 | 100% | ||
blackboxcrypto | 0 | 603,013,600 | 100% | ||
beingbetter | 0 | 805,255,027 | 100% | ||
narla.ghelo | 0 | 144,407,500 | 100% | ||
safetony | 0 | 1,117,943,062 | 100% | ||
joncg | 0 | 605,637,100 | 100% | ||
jvictorazevedo | 0 | 963,205,269 | 100% | ||
neoptolemo | 0 | 1,137,278,441 | 100% | ||
rguduru | 0 | 1,160,488,042 | 100% | ||
yungcryptix | 0 | 1,119,869,041 | 100% | ||
javibs | 0 | 992,215,542 | 100% | ||
stone5 | 0 | 1,160,485,892 | 100% |
great questions, Luke. I hope @dan can clear some of this up for us.
author | ashe-oro |
---|---|
permlink | re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t102045425z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 10:22:15 |
last_update | 2018-01-06 10:22:15 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 10:22:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.288 HBD |
curator_payout_value | 0.412 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 24,151,212,829,722 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,492,078 |
net_rshares | 175,054,118,637 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enki | 0 | 47,706,044,166 | 0.6% | ||
lukestokes | 0 | 47,501,270,014 | 2% | ||
libertyepodcast | 0 | 79,846,804,457 | 19% |
You might enjoy <a href="https://steemit.com/bitshares/@stan/the-fourth-guy-fawkes-day-in-bitshares-steemit-history">this post</a> which @sim31 linked to in a comment above. That post links to <a href="https://bitsharestalk.org/index.php/topic,14019.msg182307.html#msg182307">this post</a> which has a lot of interesting details. Also, see Ned's comment above. Interesting times. :)
author | lukestokes |
---|---|
permlink | re-ashe-oro-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015837165z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["sim31"],"links":["https://steemit.com/bitshares/@stan/the-fourth-guy-fawkes-day-in-bitshares-steemit-history","https://bitsharestalk.org/index.php/topic,14019.msg182307.html#msg182307"],"app":"steemit/0.1"} |
created | 2018-01-07 01:58:36 |
last_update | 2018-01-07 01:58:36 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 01:58:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.290 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 382 |
author_reputation | 556,640,380,599,219 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,657,990 |
net_rshares | 29,946,595,157 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ashe-oro | 0 | 29,946,595,157 | 15% |
I really don't understand the argument for investors getting screwed. Bitshares has performed admirably and is only getting stronger. Back in the earlier days, in the Bitshares forum, many of us suggested that success could only be judged through the lens of a little more time. That being said, Dan has acknowledged mistakes and attempted to learn from them. Isn't his word enough? Dan's tech is being peer reviewed in the public domain against user adoption and it's competition.....the most rigorous kind of peer review there is. I can't see what good can come from dissecting the past any further than that. Where is the value unless it is to stir up acrimony?
author | benjojo |
---|---|
permlink | re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t215107954z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 21:51:06 |
last_update | 2018-01-06 21:51:06 |
depth | 2 |
children | 2 |
last_payout | 2018-01-13 21:51:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.919 HBD |
curator_payout_value | 0.305 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 670 |
author_reputation | 120,749,050,383,122 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,620,700 |
net_rshares | 126,187,597,198 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mjhomb | 0 | 126,187,597,198 | 100% |
Exactly. Every investor is risking their own money on their own initiative out of SPECULATION for the future. When you hear an announcement that something is going to happen that you didn't predict and the price crashes, that's your own fault for investing speculatively and not expecting anything to change. You have to be willing to lose any money you put in and not be bitter about the project going a direction you weren't expecting. Do your due diligence people.
author | beanz |
---|---|
permlink | re-benjojo-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180107t122048699z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 12:20:48 |
last_update | 2018-01-07 12:20:48 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 12:20:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.364 HBD |
curator_payout_value | 0.112 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 471 |
author_reputation | 77,215,574,122,930 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,748,742 |
net_rshares | 47,662,576,206 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakos | 0 | 40,265,472,401 | 10% | ||
alishannoor | 0 | 7,397,103,805 | 100% |
Thanks for commenting. I've had similar feelings that there may have been some differences in timescale (maybe speculator verses investor thinking?). That said, where can I find a full post about mistakes and lessons learned? I don't necessarily think that would stir up acrimony (though it might), but I do think it might clarify historical reality and hopefully bring peace and harmony to those who are still upset (maybe unjustifiably so?) about the past. I've been told "just read bitsharestalk" when I ask for clarification on what people were so frustrated about. Maybe some specific links might help, but to me, a well thought out post would be best.
author | lukestokes |
---|---|
permlink | re-benjojo-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t231125046z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 23:11:24 |
last_update | 2018-01-06 23:11:24 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 23:11: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 | 658 |
author_reputation | 556,640,380,599,219 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,632,665 |
net_rshares | 0 |
Use this wisely, Gresham's law, seems insightful here, (worth googling) , remember the market is highly irrational , especially now. It is consistent with this irrationality that marketing trumps reality and ADA is priced higher than EOS.
author | good-news |
---|---|
permlink | re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t110646553z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 11:06:48 |
last_update | 2018-01-06 11:06:48 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 11:06:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.240 HBD |
curator_payout_value | 0.073 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 239 |
author_reputation | 539,573,157 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,499,505 |
net_rshares | 32,573,178,677 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lovejoy | 0 | 30,929,293,949 | 100% | ||
sim31 | 0 | 547,225,400 | 100% | ||
obial | 0 | 1,096,659,328 | 100% |
I'm digging the Steemit more and more, finding threads like this @lukestokes. I think I need 1 year vacation to spend 8 hours a day on steemit!
author | jankasparec |
---|---|
permlink | re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180116t050359092z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["lukestokes"],"app":"steemit/0.1"} |
created | 2018-01-16 05:04:00 |
last_update | 2018-01-16 05:04:00 |
depth | 2 |
children | 0 |
last_payout | 2018-01-23 05:04: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 | 143 |
author_reputation | 68,292,610,382,616 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,861,983 |
net_rshares | 0 |
I like the project but can't invest because there is no wallet for linux which is a bit of a red flag
author | safetony |
---|---|
permlink | re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t121438095z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 12:14:39 |
last_update | 2018-01-06 12:14:39 |
depth | 2 |
children | 7 |
last_payout | 2018-01-13 12:14:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 1,616,237,967,768 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,510,930 |
net_rshares | 4,232,390,371 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
safetony | 0 | 1,806,829,893 | 100% | ||
adamsteem | 0 | 1,653,831,526 | 100% | ||
eric.barrows | 0 | 771,728,952 | 100% |
it's an ERC20 token at the moment.
author | ashe-oro |
---|---|
permlink | re-safetony-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t130424041z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 13:05:54 |
last_update | 2018-01-06 13:05:54 |
depth | 3 |
children | 3 |
last_payout | 2018-01-13 13:05:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.579 HBD |
curator_payout_value | 0.193 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 24,151,212,829,722 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,519,962 |
net_rshares | 79,846,804,457 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bbhart | 0 | 0 | 0% | ||
libertyepodcast | 0 | 79,846,804,457 | 19% |
I have the wallet running on linux https://github.com/h4ck3rm1k3/cardano-sl
author | h4ck3rm1k3st33m |
---|---|
permlink | re-safetony-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t144004485z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://github.com/h4ck3rm1k3/cardano-sl"],"app":"steemit/0.1"} |
created | 2018-01-06 14:40:03 |
last_update | 2018-01-06 14:40:03 |
depth | 3 |
children | 2 |
last_payout | 2018-01-13 14:40: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 | 75 |
author_reputation | 3,025,934,704,561 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,538,610 |
net_rshares | 1,029,701,503 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
quantumhealing | 0 | 0 | 100% | ||
safetony | 0 | 1,029,701,503 | 100% |
@stan has a series of posts called "origins of bitshares." I haven't read most of them (yet), but I think what you're asking for might be covered there.
author | sim31 |
---|---|
permlink | re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t162627035z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["stan"],"app":"steemit/0.1"} |
created | 2018-01-06 16:26:27 |
last_update | 2018-01-06 16:26:27 |
depth | 2 |
children | 27 |
last_payout | 2018-01-13 16:26:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.821 HBD |
curator_payout_value | 0.495 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 57,169,944,979 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,560,510 |
net_rshares | 238,848,366,528 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
enki | 0 | 143,118,132,500 | 1.5% | ||
benjojo | 0 | 0 | 0% | ||
lukestokes | 0 | 95,002,540,028 | 5% | ||
n00th3r | 0 | 586,359,000 | 100% | ||
narla.ghelo | 0 | 141,335,000 | 100% |
@adinofri1111 follow to me!
author | adinofri1111 |
---|---|
permlink | re-sim31-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180108t033851454z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["adinofri1111"],"app":"steemit/0.1"} |
created | 2018-01-08 03:38:54 |
last_update | 2018-01-08 03:38:54 |
depth | 3 |
children | 0 |
last_payout | 2018-01-15 03: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 | 27 |
author_reputation | 827,133,055 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,905,786 |
net_rshares | 1,143,080,135 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adinofri1111 | 0 | 1,143,080,135 | 100% |
I've read <a href="http://docs.bitshares.org/bitshares/history.html">this history</a> but it only has a very small section on The Great Consolidation. To me, if that was a mistake, it's something to be highlighted and explained in detail. This is how we grow and learn. Instead of hiding our mistakes, we can highlight them and demonstrate how we learned from them and rebuilt trust through the process. If this event keeps investors away, why not explain it in detail as to what worked and what didn't and how investors and speculators were handled and how they profited or had losses. Showing how STEEM and EOS learned from that could also be very enlightening. Also, does it relate at all to the disagreement between @ned and @dan related to Smart Media Tokens? Could similar "mistakes" (if they were mistakes) be made with EOS which might harm investors? These are things I'd love to see openly discussed.
author | lukestokes |
---|---|
permlink | re-sim31-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t165054441z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned","dan"],"links":["http://docs.bitshares.org/bitshares/history.html"],"app":"steemit/0.1"} |
created | 2018-01-06 16:50:54 |
last_update | 2018-01-06 16:50:54 |
depth | 3 |
children | 25 |
last_payout | 2018-01-13 16:50:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.793 HBD |
curator_payout_value | 1.148 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 909 |
author_reputation | 556,640,380,599,219 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,565,419 |
net_rshares | 508,885,953,868 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kafkanarchy84 | 0 | 344,948,308,427 | 100% | ||
themonetaryfew | 0 | 103,929,017,365 | 20% | ||
son-of-satire | 0 | 15,246,260,002 | 100% | ||
sacred-agent | 0 | 39,417,149,180 | 35% | ||
sim31 | 0 | 556,448,300 | 100% | ||
n00th3r | 0 | 595,617,300 | 100% | ||
gchan129 | 0 | 322,183,483 | 100% | ||
narla.ghelo | 0 | 138,262,500 | 100% | ||
paullintilhac | 0 | 615,320,000 | 100% | ||
blockpanda | 0 | 568,745,500 | 100% | ||
adamsteem | 0 | 1,620,251,190 | 100% | ||
jvictorazevedo | 0 | 928,390,621 | 100% |
Cardano is completely overvalued. They haven't even implemented anything yet. They are willing to work hard to implement something that is worse than dPoS. nice.
author | marc99 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t155145854z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 15:51:45 |
last_update | 2018-01-06 15:51:45 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 15:51:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.652 HBD |
curator_payout_value | 0.062 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 2,577,073,356,117 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,553,309 |
net_rshares | 382,563,243,150 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lovejoy | 0 | 30,585,635,127 | 100% | ||
ryanprentiss | 0 | 8,234,769,903 | 100% | ||
marc99 | 0 | 342,112,523,913 | 100% | ||
globalone | 0 | 556,864,600 | 100% | ||
obial | 0 | 1,073,449,607 | 100% |
They've implemented plenty. Their native token is being used on their blockchain, with their native wallet. It has withstood a $20 billion bug bounty via the hostile open Internet so far. They have a long way to go, but make [regular progress reports](https://forum.cardanohub.org/t/10-01-18-a-cardano-development-update-from-charles-hoskinson-co-founder-and-ceo-of-iohk/5730). They started from scratch, unlike many projects which were a fork from pre-existing code, so they have done a _lot_ to get this far.
author | brixx |
---|---|
permlink | re-marc99-re-dan-peer-review-of-cardano-s-ouroboros-20180111t071329540z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1","links":["https://forum.cardanohub.org/t/10-01-18-a-cardano-development-update-from-charles-hoskinson-co-founder-and-ceo-of-iohk/5730"]} |
created | 2018-01-11 07:13:30 |
last_update | 2018-01-11 07:16:09 |
depth | 2 |
children | 0 |
last_payout | 2018-01-18 07:13: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 | 510 |
author_reputation | 5,383,739,840 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,686,560 |
net_rshares | 592,995,819 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
quantumhealing | 0 | 592,995,819 | 100% |
Cardano's market success was driven primarily by brilliant marketing strategy, I suspect. I have both coin/token though.
author | introvertspeaks |
---|---|
permlink | re-marc99-re-dan-peer-review-of-cardano-s-ouroboros-20180107t045143747z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:51:42 |
last_update | 2018-01-07 04:51:42 |
depth | 2 |
children | 0 |
last_payout | 2018-01-14 04:51: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 | 120 |
author_reputation | -4,351,658,764,138 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,682,141 |
net_rshares | 0 |
clicked on this thinking i'd see another article boosting cardano, was pleasantly surprised by your frank defenestration of cardano! now its starting to make sense why this network is crazy in that "trust" is delegated to 7, count em, 7 "trusted" nodes source: https://cardanodocs.com/timeline/bootstrap/ in the requirements section: quote During Bootstrap era stake in Cardano SL should be effectively delegated to a fixed set of keys S. S = 7 Stake should be distributed among s ∈ S.
author | marketstack |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t185405393z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://cardanodocs.com/timeline/bootstrap/"],"app":"steemit/0.1"} |
created | 2018-01-07 18:54:21 |
last_update | 2018-01-07 18:54:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 18:54: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 | 491 |
author_reputation | 13,383,777,748,100 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,821,249 |
net_rshares | 0 |
EOS will change the world, amen to that!
author | markmemark |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t070911110z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:09:03 |
last_update | 2018-01-06 07:09:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:09: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 | 40 |
author_reputation | -26,415,646,170 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,462,990 |
net_rshares | 0 |
>Ouroboros is a 400 pound bullet proof vest that doesn’t actually stop the real bullets. @dan said that :) I'm selling my Ada as we speak
author | markwhittam |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t202529050z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 20:25:30 |
last_update | 2018-01-06 20:25:30 |
depth | 1 |
children | 1 |
last_payout | 2018-01-13 20:25: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 | 140 |
author_reputation | 47,076,564,282,337 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,606,039 |
net_rshares | 313,475,821 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gchan129 | 0 | 313,475,821 | 100% |
And switch to Verge instead.
author | introvertspeaks |
---|---|
permlink | re-markwhittam-re-dan-peer-review-of-cardano-s-ouroboros-20180107t032745054z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:27:45 |
last_update | 2018-01-07 03:27:45 |
depth | 2 |
children | 0 |
last_payout | 2018-01-14 03:27: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 | 28 |
author_reputation | -4,351,658,764,138 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,670,280 |
net_rshares | 0 |
Thanks for this post!
author | matthiasjohn |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t083706028z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 08:43:18 |
last_update | 2018-01-08 08:43:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 08:43: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 | 21 |
author_reputation | 834,004,459,441 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,951,818 |
net_rshares | 0 |
I'm really glad you posted this. This reinforces my belief that speculators and fans should research the technology they're representing. I was just discussing with a friend there's many highly valued tokens that have no proof their technology is real or at the least a viable solution. There should be more discretion taken overall especially when the developers lack a positive community track record.
author | max-infeld |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t062434655z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:24:36 |
last_update | 2018-01-06 06:24:36 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:24: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 | 404 |
author_reputation | 2,039,194,374,573 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,456,518 |
net_rshares | 0 |
Cardano uses a new proof of stake algorithm called Ouroboros, which determines how individual nodes reach consensus about the network. The algorithm is a crucial part of the infrastructure that supports the Ada cryptocurrency and is a major innovation in blockchain technology. Am i right?
author | mbilalihsan |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t213105689z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 21:31:09 |
last_update | 2018-01-07 21:31:09 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 21:31: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 | 289 |
author_reputation | 1,558,028,835 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,847,954 |
net_rshares | 0 |
Dan thanks for this post. I'm gonna read it a 2nd and 3rd time. I stayed away from Cardano after reading their "What is Cardano" section and reading... "A major innovation of Cardano is that it will ***balance the needs of users with those of regulators***, and in doing so combine privacy with regulation. The vision for Cardano is that its new style of regulated computing will bring greater financial inclusion by providing open access for all to fair financial services. Keep regulation TF out of crypto! **Never invite the devils in!** Let the market regulate itself! PS, hope to have a chance to meet you at Anarchapulco!
author | michaelmcawesome |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t162419649z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 16:24:18 |
last_update | 2018-01-06 16:24:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 16:24: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 | 629 |
author_reputation | 1,403,414,316,595 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,560,113 |
net_rshares | 0 |
Like it
author | minecrew |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t191745671z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 19:17:45 |
last_update | 2018-01-06 19:17:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 19:17: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 | 7 |
author_reputation | 18,119,479,198 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,593,573 |
net_rshares | 0 |
Very nice technical analysis. Good reading for people who are interested in technolgy behind ADA (or in crypto general)
author | minjunpark |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t005349055z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 00:53:48 |
last_update | 2018-01-07 00:53:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 00:53: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 | 119 |
author_reputation | 668,425,897,741 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,648,997 |
net_rshares | 1,134,890,460 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
minjunpark | 0 | 1,134,890,460 | 100% |
"Block interval determines the latency until a transaction is included in the first block. This is the lower-bound on the responsiveness of decentralized applications built on the protocol." -- not true.
author | msmith |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180205t101600912z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-02-05 10:16:00 |
last_update | 2018-02-05 10:16:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-12 10:16: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 | 203 |
author_reputation | 12,278,789,721 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,109,154 |
net_rshares | 0 |
author | n3r0 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t095927064z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 09:59:27 |
last_update | 2018-01-06 11:02:27 |
depth | 1 |
children | 3 |
last_payout | 2018-01-13 09:59:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.208 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 537,681,475,333 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,488,535 |
net_rshares | 23,059,265,170 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fortified | 0 | 10,869,124,212 | 10% | ||
n3r0 | 0 | 12,190,140,958 | 100% |
author | dan |
---|---|
permlink | re-n3r0-re-dan-peer-review-of-cardano-s-ouroboros-20180106t143256092z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 14:32:54 |
last_update | 2018-01-06 14:32:54 |
depth | 2 |
children | 2 |
last_payout | 2018-01-13 14:32:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.176 HBD |
curator_payout_value | 0.046 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 155,470,101,136,708 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,537,088 |
net_rshares | 23,059,826,502 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fortified | 0 | 10,869,124,212 | 10% | ||
n3r0 | 0 | 12,190,702,290 | 100% |
Thank you for this post. A lot of people seem to buy coins without actually knowing the technology behind any of them just because they see them going up on Coin Market Cap. Which I've learned from previous experience is not generally a wise move. So I hope this post will be pretty grounding for the average crypto enthusiast. Keep up the good work. Thanks again. @fortified
author | fortified |
---|---|
permlink | re-dan-re-n3r0-re-dan-peer-review-of-cardano-s-ouroboros-20180106t212317900z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["fortified"],"app":"steemit/0.1"} |
created | 2018-01-06 21:23:18 |
last_update | 2018-01-06 21:23:18 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 21:23: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 | 382 |
author_reputation | 38,014,334,194,654 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,616,307 |
net_rshares | 0 |
:D:D
author | n3r0 |
---|---|
permlink | re-dan-re-n3r0-re-dan-peer-review-of-cardano-s-ouroboros-20180106t164000707z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 16:40:00 |
last_update | 2018-01-06 16:40:00 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 16:40: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 | 4 |
author_reputation | 537,681,475,333 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,563,314 |
net_rshares | 0 |
Great posting
author | nasrullahilyas |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t125355414z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 12:54:00 |
last_update | 2018-01-07 12:54:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 12:54: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 | 13 |
author_reputation | 210,154,756,428 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,754,623 |
net_rshares | 0 |
Great eforts and research work ... Interseting project "Cardano" ... Good for us to work on it......... thanks for shareing this great post with us dear @dan ....
author | nazirkhyber |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t071807444z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 07:18:06 |
last_update | 2018-01-06 07:18:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:18: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 | 162 |
author_reputation | 706,568,984,833 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,464,299 |
net_rshares | 0 |
Wow. This is a lot to digest. This holder is inclined to say thanks.
author | nicholas83 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t014737138z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:47:36 |
last_update | 2018-01-07 01:48:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 01:47: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 | 68 |
author_reputation | 3,100,178,185,327 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,656,533 |
net_rshares | 0 |
I read this post a couple of times to understand the technical security comparison and the analysis proposed. I still need to know a lot before I totally get it, but the conclusion I made was not to invest in Cardano because of its weak security issue. I hope I got this right.
author | nuridin |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t132420975z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 13:24:21 |
last_update | 2018-01-07 13:24:21 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 13:24: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 | 277 |
author_reputation | 755,093,792,969 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,760,276 |
net_rshares | 0 |
> Existing DPOS chains select a set of unlikely to collude entities by approval voting and then schedule them in a pseudorandom order. This shuffling is not really needed because once each of them participates a single block a 2/3+ consensus can be determined. This is why EOS will be removing the random shuffle all together. How will EOS determine the order of the block producers? If the order is not pseudorandom can this be exploited in some way?
author | onthewayout |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t062448809z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:24:48 |
last_update | 2018-01-06 06:24:48 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 06:24:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.556 HBD |
curator_payout_value | 0.840 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 452 |
author_reputation | 13,205,527,560,619 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,456,551 |
net_rshares | 350,818,933,687 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
onthewayout | 0 | 333,683,565,227 | 100% | ||
jerzy | 0 | 17,135,368,460 | 100% |
As I am interested in the issue of determining the order of the block producers in EOS, today I read from their whitepaper( https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md ) "The top 20 by total approval are automatically chosen every round and the last producer is chosen proportional to their number of votes relative to other producers. The selected producers are shuffled using a pseudorandom number derived from the block time. This shuffling is done to ensure that all producers maintain balanced connectivity to all other producers." According to my understanding of the quote, the producers will be shuffled. The whitepaper was updated 4 months ago, though. @dan (or anybody of good will), could you please clarify the issue?
author | jerzy |
---|---|
permlink | re-onthewayout-re-dan-peer-review-of-cardano-s-ouroboros-20180106t120117543z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"links":["https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md"],"app":"steemit/0.1"} |
created | 2018-01-06 12:01:18 |
last_update | 2018-01-06 12:09:36 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 12:01:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 761 |
author_reputation | 1,707,286,936 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,508,636 |
net_rshares | 571,819,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sim31 | 0 | 571,819,800 | 100% |
See the "Removing block producer schedule shuffling" section in the [most recent eos.io development update](https://steemit.com/eos/@eosio/eos-io-dawn-2-0-released-and-development-update)
author | sim31 |
---|---|
permlink | re-jerzy-re-onthewayout-re-dan-peer-review-of-cardano-s-ouroboros-20180106t163030867z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/eos/@eosio/eos-io-dawn-2-0-released-and-development-update"],"app":"steemit/0.1"} |
created | 2018-01-06 16:30:30 |
last_update | 2018-01-06 16:30:30 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 16:30:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.129 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 187 |
author_reputation | 57,169,944,979 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,561,344 |
net_rshares | 17,525,684,975 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
n00th3r | 0 | 561,670,200 | 100% | ||
jerzy | 0 | 16,964,014,775 | 100% |
One of the most interesting posts I have read on Steemit. Invested a lot in Steem and Bitshares and just moved in to Cardano because I recognised so many strong aspects of it. Will closely watch how this plays out before investing further into Cardano/Ada.
author | pagandance |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t091628359z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 09:16:27 |
last_update | 2018-01-07 09:16:27 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 09:16: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 | 256 |
author_reputation | 2,567,230,099,182 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,719,014 |
net_rshares | -150,836,284,573 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | -9,351,372,884 | -10% | ||
nextgencrypto | 0 | -1,759,690,472 | -10% | ||
danknugs | 0 | -659,883,015 | -10% | ||
the.bot | 0 | -12,460,186,550 | -10% | ||
ozchartart | 0 | -6,799,295,016 | -10% | ||
thecyclist | 0 | -1,252,084,293 | -10% | ||
engagement | 0 | -873,516,146 | -10% | ||
theyeti | 0 | -34,335,378,550 | -10% | ||
randomthoughts | 0 | -736,456,374 | -10% | ||
thedelegator | 0 | -787,893,663 | -10% | ||
thesloth | 0 | -17,639,906,618 | -10% | ||
ngc | 0 | -32,440,450,699 | -10% | ||
rewardpoolrape | 0 | -31,740,170,293 | -0.5% |
Dan has made investors money with Bitshares, Steem, and EOS. As an investor, that is what matters. I haven't invested in Cardano, maybe I should have. If Dan starts another project, I'll invest in that one too.
author | pairmike |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180112t042540429z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 04:25:39 |
last_update | 2018-01-12 04:25:39 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 04:25: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 | 215 |
author_reputation | 43,927,661,974,027 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,915,255 |
net_rshares | 0 |
Thank you Dan. It has been quite annoying to hear the repeated claim that the “peer reviewed” white paper meant anything. Charles has gone around saying this and using the word “intelligent” in the most annoying way. As if others in the field are not “peer reviewing” their papers, and as if that makes any difference. I’m a huge fan of EOS and look forward to see a real dex come to life in Eos as soon as possible. Thank you Dan for bitshares, steem and Eos. You are a living Legend keep up the amazing work.
author | papotus |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t070352198z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:03:51 |
last_update | 2018-01-06 07:03:51 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:03: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 | 511 |
author_reputation | 2,588,242,645,947 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,462,231 |
net_rshares | 0 |
Thank you @ned and @dan : First for you created steemit... And thanks for all the hard work to make all this updates here... Very useful. Im a designer and if you want my help for something just say me... i will be happy. Thanks again :)
author | paradise |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t182153543z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned","dan"],"app":"steemit/0.1"} |
created | 2018-01-07 18:21:57 |
last_update | 2018-01-07 18:27:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 18:21:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 240 |
author_reputation | 1,222,816,979,639 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,815,426 |
net_rshares | 438,224,817 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
paradise | 0 | 438,224,817 | 100% |
Great post!
author | piach |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t181629922z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 18:16:30 |
last_update | 2018-01-08 18:16:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 18:16:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.358 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 2,882,012,906,064 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,058,569 |
net_rshares | 33,633,221,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
piach | 0 | 33,633,221,066 | 100% |
Ha, this post smells of FUD big time. Also, what an exclusive echo chamber steemit turns into. It is all about EGO tripping ... with some tipping on the side :D
author | pip010 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t102613253z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 10:26:12 |
last_update | 2018-01-09 10:26:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 10:26:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,219,329 |
net_rshares | 0 |
All very interesting I’m learning so much thank you so much
author | pokerman |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t063400631z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:34:00 |
last_update | 2018-01-06 06:34:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:34: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 | 59 |
author_reputation | 119,760,358,941 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,457,833 |
net_rshares | 0 |
This ego to the fullest. No wonder we have so many coins. It is clear we need multiple taste, but as we can see, ego plays big in these variants.
author | pouchon |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t040201911z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:02:00 |
last_update | 2018-01-07 04:02:00 |
depth | 1 |
children | 2 |
last_payout | 2018-01-14 04:02:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.099 HBD |
curator_payout_value | 0.692 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 147 |
author_reputation | 841,542,726,631,286 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,675,060 |
net_rshares | 284,017,630,452 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pouchon | 0 | 139,475,900,187 | 49% | ||
surfyogi | 0 | 144,541,730,265 | 100% |
Consider: What the community WANTS is what the community GETS. This is P2P and we get to support what we WANT 2 B.
author | surfyogi |
---|---|
permlink | re-pouchon-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094445130z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-12 09:44:45 |
last_update | 2018-01-12 09:44:45 |
depth | 2 |
children | 1 |
last_payout | 2018-01-19 09:44: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 | 114 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,964,396 |
net_rshares | 0 |
absolutely I agree @surfyogi 2B supported and I support
author | darksea |
---|---|
permlink | re-surfyogi-re-pouchon-re-dan-peer-review-of-cardano-s-ouroboros-20180112t125930896z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["surfyogi"],"app":"steemit/0.1"} |
created | 2018-01-12 12:59:39 |
last_update | 2018-01-12 12:59:39 |
depth | 3 |
children | 0 |
last_payout | 2018-01-19 12:59: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 | 55 |
author_reputation | 2,584,855,389,933 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,998,142 |
net_rshares | 0 |
Dude Thats great
author | rajashams |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t124317208z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 12:43:15 |
last_update | 2018-01-06 12:43:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 12:43: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 | 16 |
author_reputation | -12,988,593,178 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,515,968 |
net_rshares | 0 |
he follow and upvote I follow and upvote back
author | raphal |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t030931112z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 03:09:33 |
last_update | 2018-01-08 03:09:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 03:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 36,535,115,107 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,901,283 |
net_rshares | 5,079,392,604 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
raphal | 0 | 5,079,392,604 | 100% |
he follow and upvote I follow and upvote back
author | raphal |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t033103261z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 03:31:06 |
last_update | 2018-01-08 03:31:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 03:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.034 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 36,535,115,107 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,904,626 |
net_rshares | 3,269,494,090 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
raphal | 0 | 3,269,494,090 | 100% |
Interesting take inn Cardano not many people show this side of the project
author | raybilson |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t070625020z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 07:06:24 |
last_update | 2018-01-08 07:06:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 07:06:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.264 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 2,265,563,811,277 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,937,156 |
net_rshares | 24,860,760,309 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
raybilson | 0 | 24,860,760,309 | 100% |
So, we have listened to some of your videos and enjoy your content very much. We have similar interests in that we also follow Crypto. We think you may really like what we have going on @revelationquotes We have The Cryptocurrency Challenges that you Pick the High Price and can earn 50% SBD. They are fun contests. Please check it out, We think you may really enjoy them. Thanks.
author | revelationquotes |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180112t151414571z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["revelationquotes"],"app":"steemit/0.1"} |
created | 2018-01-12 15:14:15 |
last_update | 2018-01-12 15:14:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-19 15:14:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 386 |
author_reputation | 74,119,741,091,678 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 29,025,161 |
net_rshares | 0 |
I was just recently reading the ouroboros whitepaper and realized it was a poor copy of your work. I'm glad to see your post here. It would be much more interesting to me had they acknowledged your work or sought your advice. I'm very interested in all that can be done with your DPOS technology, but after looking through the ouroboros whitepaper for a bit, there were enough signs to cross this one off my list.
author | richardcrill |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t080640574z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 08:06:39 |
last_update | 2018-01-06 08:06:39 |
depth | 1 |
children | 1 |
last_payout | 2018-01-13 08:06:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.643 HBD |
curator_payout_value | 0.532 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 413 |
author_reputation | 55,974,657,421,087 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,471,348 |
net_rshares | 224,389,923,995 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | 132,713,813,345 | 1% | ||
themonetaryfew | 0 | 58,460,072,268 | 10% | ||
whyknot | 0 | 760,828,547 | 100% | ||
paulata | 0 | 619,520,000 | 100% | ||
marc99 | 0 | 30,949,479,090 | 100% | ||
blockpanda | 0 | 538,002,500 | 100% | ||
dcj | 0 | 348,208,245 | 100% |
Totally agree. Same for me.
author | whyknot |
---|---|
permlink | re-richardcrill-re-dan-peer-review-of-cardano-s-ouroboros-20180108t141154245z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 14:11:54 |
last_update | 2018-01-08 14:11:54 |
depth | 2 |
children | 0 |
last_payout | 2018-01-15 14:11:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 112,320,686,869 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,012,087 |
net_rshares | 0 |
Cardamon :D
author | riskdebonair |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t171758515z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 17:18:00 |
last_update | 2018-01-06 17:18:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 17:18:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.418 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 52,998,248,638,153 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,570,758 |
net_rshares | 147,207,454,865 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dzid26 | 0 | 2,156,964,273 | 100% | ||
riskdebonair | 0 | 145,050,490,592 | 100% |
intresting buddy
author | rjmohsin |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t181646496z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 18:16:51 |
last_update | 2018-01-08 18:16:51 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 18:16: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 | 16 |
author_reputation | 19,197,616,426 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,058,639 |
net_rshares | 0 |
Thank you for this post. While i do not understand the technical stuff completely, I wonder why the current market cap compared to steem is so high. I know a better investment than Cardano...
author | rondras |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t195457997z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 19:55:00 |
last_update | 2018-01-06 19:55:00 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 19:55:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.114 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 18,390,194,709,037 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,600,553 |
net_rshares | 15,254,826,803 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chryptomark | 0 | 14,245,018,085 | 100% | ||
rondras | 0 | 1,009,808,718 | 100% |
good inform for all steemians thank you so much dear @dan
author | saifuk |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t072538631z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-07 07:25:45 |
last_update | 2018-01-07 07:25:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 07:25:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 65,912,697,233 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,703,719 |
net_rshares | 366,173,129 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
saifuk | 0 | 366,173,129 | 100% |
EOS is far superior than any of the proposed platforms... Looking forward for EOS wallet launch!
author | saifulke |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t040703406z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:07:03 |
last_update | 2018-01-07 04:07:03 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 04:07: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 | 96 |
author_reputation | 4,634,225,776 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,675,819 |
net_rshares | 497,745,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
saifulke | 0 | 497,745,000 | 100% |
Well clearly EOS, is the main chain to launch Hello Kitties applications of the future, which is currently clogging the Ethereum Network.
author | scottv53 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t073948065z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 07:39:48 |
last_update | 2018-01-09 07:39:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 07:39: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 | 138 |
author_reputation | 89,047,741 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,192,230 |
net_rshares | 0 |
I learned a lot from this article. Thank you for brining this to the table. It really does show how advanced Bitshares, Steem as well as EOS are. Thank you for your vision. Steemit is the first thing I go to on my computer!
author | sequentialvibe |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t073605694z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:36:12 |
last_update | 2018-01-06 08:31:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:36:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 224 |
author_reputation | 58,213,341,281,793 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,466,812 |
net_rshares | 2,281,032,406 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sequentialvibe | 0 | 1,880,664,734 | 23% | ||
rajafahad | 0 | 400,367,672 | 100% |
 I need boy friend How are u..?
author | sexymaria | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201816t175821417z | ||||||
category | cardamon | ||||||
json_metadata | {"tags":["cardamon","ouroboros","eos","steem","bitshares"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-01-06 11:58:27 | ||||||
last_update | 2018-01-06 11:58:27 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2018-01-13 11:58:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 78 | ||||||
author_reputation | -465,531,395,611 | ||||||
root_title | "Peer Review of Cardano's Ouroboros" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 27,508,127 | ||||||
net_rshares | -13,277,928,994,076 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dan | 0 | -13,271,381,334,557 | -100% | ||
themonetaryfew | 0 | -6,495,563,585 | -1% | ||
blacklist-a | 0 | -52,095,934 | -10% |
I need a Steem friend!
author | safetony |
---|---|
permlink | re-sexymaria-re-dan-201816t175821417z-20180106t121031618z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 12:10:30 |
last_update | 2018-01-06 12:10:30 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 12:10: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 | 22 |
author_reputation | 1,616,237,967,768 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,510,219 |
net_rshares | 0 |
honest reveiw
author | rajafahad |
---|---|
permlink | re-safetony-re-sexymaria-re-dan-201816t175821417z-20180107t024856477z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 02:49:00 |
last_update | 2018-01-07 02:49:00 |
depth | 3 |
children | 0 |
last_payout | 2018-01-14 02:49: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 | 13 |
author_reputation | -6,279,412,433 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,664,949 |
net_rshares | 0 |
there are some valuable informations to learn here ... thanks a lot.
author | shapla |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t114452699z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 11:44:42 |
last_update | 2018-01-07 11:44:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 11:44: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 | 69 |
author_reputation | 2,742,693,446,130 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,742,592 |
net_rshares | 0 |
https://steemit.com/blockchain/@shazi935/i-need-wheel-chairs-capital-to-work-and-enroll-my-child-in-school-raisecharityfunds
author | shazi935 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t034128535z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"links":["https://steemit.com/blockchain/@shazi935/i-need-wheel-chairs-capital-to-work-and-enroll-my-child-in-school-raisecharityfunds"],"app":"steemit/0.1"} |
created | 2018-01-08 03:41:33 |
last_update | 2018-01-08 03:41:33 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 03:41: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 | 124 |
author_reputation | 13,360,955,492 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,906,231 |
net_rshares | 0 |
hi bro why steemit decline your payouts this wass a much needed content that you posted.
author | shazi935 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t034220828z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 03:42:24 |
last_update | 2018-01-08 03:42:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 03:42: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 | 88 |
author_reputation | 13,360,955,492 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,906,385 |
net_rshares | 0 |
I am just so happy to find Dan on steemit. and get this close to him.
author | shihu4937 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180110t214512404z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-10 21:45:12 |
last_update | 2018-01-10 21:45:12 |
depth | 1 |
children | 1 |
last_payout | 2018-01-17 21:45:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.015 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 1,942,863,637 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,596,016 |
net_rshares | 2,402,623,712 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eatsrewards | 0 | 2,402,623,712 | 0.25% |
Enjoy the vote and reward!
author | eatsrewards |
---|---|
permlink | eatsrewards-re-shihu4937re-dan-peer-review-of-cardano-s-ouroboros-20180110t214512404z |
category | cardamon |
json_metadata | "" |
created | 2018-01-10 22:16:45 |
last_update | 2018-01-10 22:16:45 |
depth | 2 |
children | 0 |
last_payout | 2018-01-17 22:16:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.951 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 6,338,926,820,750 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,601,452 |
net_rshares | 102,033,967,866 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
iflagtrash | 0 | 31,361,764,448 | 1.5% | ||
rewardpoolrape | 0 | 63,464,332,282 | 1.5% | ||
eatsrewards | 0 | 7,207,871,136 | 1.5% |
I'm glad I've only invested a small amount into Cardano, thank you @dan for the heads up - just sold my stake in them. Also, I just purchased open.EOS on the Bitshares exchange and it's sitting in my Bitshares exchange wallet now. Do I have to register these tokens now on the website or send it to myetherwallet? I've heard some things about that US investors are unable to participate.
author | showtime24 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t060748708z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 06:07:48 |
last_update | 2018-01-06 07:25:45 |
depth | 1 |
children | 13 |
last_payout | 2018-01-13 06:07:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.161 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 389 |
author_reputation | 579,652,376,659 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,454,049 |
net_rshares | 19,293,676,843 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ackza | 0 | 18,611,979,143 | 22% | ||
santanero714 | 0 | 86,080,400 | 100% | ||
etheos | 0 | 595,617,300 | 100% |
@showtime24 I actually asked @stan that exact question on a livestream and his replied was quite enlightening. You can see exactly what he said on my post here : https://steemit.com/bitshares/@daltono/american-gothic-remastering-feat-stan-larimer-and-connie-willis
author | daltono |
---|---|
permlink | re-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t063833379z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["showtime24","stan"],"links":["https://steemit.com/bitshares/@daltono/american-gothic-remastering-feat-stan-larimer-and-connie-willis"],"app":"steemit/0.1"} |
created | 2018-01-06 06:38:33 |
last_update | 2018-01-06 06:38:33 |
depth | 2 |
children | 10 |
last_payout | 2018-01-13 06:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 1,792,030,495,152,214 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,458,525 |
net_rshares | 7,930,579,268 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
showtime24 | 0 | 7,930,579,268 | 21% |
Thank you @daltono @ponts I will look into this and if I have any questions, I know who to talk to! Are there any other steps, like do I have to register anything on the eos.io website? Use a vpn?
author | showtime24 |
---|---|
permlink | re-daltono-re-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t065225878z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["daltono","ponts"],"app":"steemit/0.1"} |
created | 2018-01-06 06:52:27 |
last_update | 2018-01-06 06:54:15 |
depth | 3 |
children | 9 |
last_payout | 2018-01-13 06:52: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 | 198 |
author_reputation | 579,652,376,659 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,460,460 |
net_rshares | 0 |
Yes, if you live is the USSA you need to register your EOS using myetherwallet. Yes, prisoners such as yourself are forbidden by your SEC to participate in this token distribution.
author | ponts |
---|---|
permlink | re-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t061302172z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:14:21 |
last_update | 2018-01-06 06:14:21 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 06:14:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 181 |
author_reputation | 601,101,103,702 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,455,004 |
net_rshares | 8,214,181,171 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 86,080,400 | 100% | ||
eirsanctum | 0 | 197,521,503 | 100% | ||
showtime24 | 0 | 7,930,579,268 | 21% |
it's ok to trade for the EOS tokens on Bitshares though. right?
author | j4y |
---|---|
permlink | re-ponts-re-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t163921396z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 16:39:21 |
last_update | 2018-01-06 16:39:21 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 16:39: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 | 64 |
author_reputation | 184,465,720,544 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,563,182 |
net_rshares | 0 |
It is true, Cardano’s team only bolsters the support and justification of many core DPOS concepts, even if their approach is suboptimal compared to designs of EOS, BitShares, and Steem.
author | shuvo12dag |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t040407334z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 04:04:09 |
last_update | 2018-01-07 04:04:09 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 04:04: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 | 185 |
author_reputation | 4,458,723,860 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,675,416 |
net_rshares | 0 |
I hardly understood anything written here but I'm looking forward to read what kind of comments @dan 's ex-spouse @ned has to reply here..
author | skreza |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t114534751z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan","ned"],"app":"steemit/0.1"} |
created | 2018-01-06 11:45:36 |
last_update | 2018-01-06 11:45:36 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 11:45:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.435 HBD |
curator_payout_value | 0.469 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 12,357,028,398,386 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,505,934 |
net_rshares | 195,865,167,181 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
skreza | 0 | 172,043,410,749 | 100% | ||
nee | 0 | 23,821,756,432 | 100% |
Wow, ver informative! Thank you and best of luck with EOS!
author | skycornish |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t171345275z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 17:13:45 |
last_update | 2018-01-06 17:13:45 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 17:13:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.161 HBD |
curator_payout_value | 0.052 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 2,169,519,497,809 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,569,928 |
net_rshares | 22,532,027,794 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
skycornish | 0 | 22,532,027,794 | 100% |
It provides a student perspective on identifying the skills and criteria that form the basis for evaluation. Emotional assessment also enhances students' confidence in themselves. It helps the person to get feedback from someone other than the teacher. It provides a student perspective on the determination of the skills and criteria that form the basis of the assessment. However, this assessment also has some drawbacks. For example; friendship among peers can lead to high or low scores for each other. They can give each other high marks by agreeing between themselves. Peers can score high because of physical strength. Also, peers are not as knowledgeable and conscious as teachers. Peer-reviewed evaluation tools are listed in the checklist. It is useful to give the criteria to the students to prevent the students' misbehavior. @dan
author | slayer10 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180110t000937152z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-10 00:09:36 |
last_update | 2018-01-10 00:09:36 |
depth | 1 |
children | 2 |
last_payout | 2018-01-17 00:09:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.306 HBD |
curator_payout_value | 0.435 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 842 |
author_reputation | 3,379,610,484,322 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,366,467 |
net_rshares | 163,072,721,325 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
surfyogi | 0 | 163,072,721,325 | 100% |
Good points. Thanks to @ned for his perspective.
author | surfyogi |
---|---|
permlink | re-slayer10-re-dan-peer-review-of-cardano-s-ouroboros-20180112t093802866z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"} |
created | 2018-01-12 09:38:03 |
last_update | 2018-01-12 09:38:03 |
depth | 2 |
children | 1 |
last_payout | 2018-01-19 09:38: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 | 48 |
author_reputation | 31,155,045,810,316 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,963,205 |
net_rshares | 238,726,590 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slayer10 | 0 | 238,726,590 | 100% |
Absolutely I agree. I thank you. For both the answer and the vote. @surfyogi
author | slayer10 |
---|---|
permlink | re-surfyogi-re-slayer10-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094701122z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["surfyogi"],"app":"steemit/0.1"} |
created | 2018-01-12 09:47:03 |
last_update | 2018-01-12 09:47:03 |
depth | 3 |
children | 0 |
last_payout | 2018-01-19 09:47: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 | 76 |
author_reputation | 3,379,610,484,322 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,964,783 |
net_rshares | 0 |
@dan ...that is well-detailed research..it very good that you are still contributing to the well fare of steemit...well done
author | smokeasare165 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t085143380z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 08:39:54 |
last_update | 2018-01-06 08:39:54 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 08:39: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 | 124 |
author_reputation | 514,137,420,082 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,476,394 |
net_rshares | 0 |
hmmm..wish the decline payout was mine..could i been the happiest guy on earth..will get there someday....
author | smokeasare165 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t220958141z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 21:58:06 |
last_update | 2018-01-06 21:58:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 21:58: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 | 106 |
author_reputation | 514,137,420,082 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,621,762 |
net_rshares | 0 |
@dan and @ned i think is high time you wonderful developers sit down to resolve your issuess..because facebook owner is thinking of joining the cryptocurrency and adding it to his facebook website..so please we need you guys...
author | smokeasare165 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t065129939z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan","ned"],"app":"steemit/0.1"} |
created | 2018-01-07 06:51:30 |
last_update | 2018-01-07 06:51:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 06:51: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 | 227 |
author_reputation | 514,137,420,082 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,699,037 |
net_rshares | 0 |
Thx @dan, very interesting! Look it, my first post for a long time https://steemit.com/cryptocurrency/@soa432/top-3-bad-project-with-top-marketcap
author | soa432 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t233704501z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"links":["https://steemit.com/cryptocurrency/@soa432/top-3-bad-project-with-top-marketcap"],"app":"steemit/0.1"} |
created | 2018-01-08 23:37:06 |
last_update | 2018-01-08 23:37:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 23:37: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 | 146 |
author_reputation | 8,183,140,276 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,112,977 |
net_rshares | 0 |
kinda short peer review.
author | spacebird89 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t060305463z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 06:00:24 |
last_update | 2018-01-07 06:00:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 06:00: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 | 24 |
author_reputation | 53,623,683,047 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,691,938 |
net_rshares | 0 |
@dan Nice, block-chain technology will soon be dominating. Best wishes :)
author | splendorhub |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t073115085z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 07:30:42 |
last_update | 2018-01-06 07:30:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:30: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 | 73 |
author_reputation | 12,936,731,361,578 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,466,086 |
net_rshares | 0 |
Oh what shocking news, after hundreds of people put their money into Cardano it turns out to be a "product" without a chance to survive against others :D One can´t mention it often enough: Due Your own research before you invest!
author | steembusiness |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t082143137z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"community":"busy","app":"busy/2.2.0"} |
created | 2018-01-06 08:21:48 |
last_update | 2018-01-06 08:21:48 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 08:21:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.722 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 231 |
author_reputation | 89,941,509,688,392 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,473,639 |
net_rshares | 1,334,172,259,479 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emerge | 0 | 2,846,399,020 | 24% | ||
nickfost | 0 | 10,685,116,874 | 21% | ||
ilovedietcoke | 0 | 4,191,684,417 | 66% | ||
cheapogroovo | 0 | 1,925,499,244 | 69% | ||
surfyogi | 0 | 177,897,514,172 | 100% | ||
gyanibilli | 0 | 6,902,320,375 | 60% | ||
welcomebot | 0 | 5,141,144,231 | 74% | ||
satfit | 0 | 1,874,791,921 | 27% | ||
mrrifat1 | 0 | 2,419,055,749 | 59% | ||
touristpk | 0 | 4,012,446,404 | 35% | ||
cyberberry | 0 | 614,821,160 | 100% | ||
eltomos | 0 | 619,520,000 | 100% | ||
roy92 | 0 | 2,991,474,906 | 28% | ||
musicgeek | 0 | 1,905,452,675 | 25% | ||
badham | 0 | 2,143,579,574 | 83% | ||
boatsports90 | 0 | 1,883,478,153 | 10% | ||
madhupkd | 0 | 3,349,306,265 | 64% | ||
mamqmuqit | 0 | 1,863,980,887 | 20% | ||
sergio34x | 0 | 617,220,000 | 100% | ||
spinbot | 0 | 9,348,728,806 | 43% | ||
senorcoconut | 0 | 1,815,038,955 | 11% | ||
iwonalaub | 0 | 9,425,637,735 | 14% | ||
blechy | 0 | 3,865,947,498 | 78% | ||
ak2154 | 0 | 10,857,335,412 | 19% | ||
coral-reef | 0 | 1,063,582,120,386 | 50% | ||
dcj | 0 | 342,404,774 | 100% | ||
obial | 0 | 1,050,239,886 | 100% |
It's just like living through the dot-com era all over again! Hundreds and hundreds of startups with stock pricing going straight to the moon, only to crash down to earth again. Remember petsupplies.com? Have your pet supplied delivered straight to your door. Well, it did happen, only it's call Amazon.com.
author | sirstacksalot |
---|---|
permlink | re-steembusiness-re-dan-peer-review-of-cardano-s-ouroboros-20180106t185038700z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 18:50:39 |
last_update | 2018-01-06 18:50:39 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 18:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.624 HBD |
curator_payout_value | 0.855 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 313 |
author_reputation | 18,203,994,280,271 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,588,158 |
net_rshares | 359,731,388,976 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
snowflake | 0 | 9,197,611,386 | 100% | ||
nikethemutt | 0 | 274,285,448,468 | 75% | ||
sirstacksalot | 0 | 76,248,329,122 | 80% |
During the dot com era people really had no clue what this internet thing was and how it would develop. Cryptos are also uncharted waters but in my opinion it's easier to predict the future for them because they are based on this infrastructure called the internet. The example you made with petsupplies and amazon.com is very interesting because it shows how this crypto space will likely develop in the future, my guess is that only protocol coins will survive and all the petsupplies.com of this world will be built on top of these blockchain.
author | snowflake |
---|---|
permlink | re-sirstacksalot-re-steembusiness-re-dan-peer-review-of-cardano-s-ouroboros-20180106t200920042z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 20:09:21 |
last_update | 2018-01-06 20:10:15 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 20:09: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 | 546 |
author_reputation | 33,312,252,512,655 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,603,187 |
net_rshares | 1,160,489,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
socalpirates | 0 | 1,160,489,610 | 100% |
waoo thats great . carry on
author | syedazunaira250 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t033654386z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:36:48 |
last_update | 2018-01-07 03:36:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 03:36: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 | 27 |
author_reputation | 1,527,683,929 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,671,588 |
net_rshares | 0 |
Great information, thanks. I'd love to see a related post on how DPOS can promote more democratic crypto systems than POW or other POS types.
author | tamhunt |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t195803602z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 19:58:12 |
last_update | 2018-01-08 19:58:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 19:58: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 | 141 |
author_reputation | 3,048,005,039 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,074,928 |
net_rshares | 0 |
Thank you Dan for clearing things about Cardano. It has reached a value of 1.12 $ without any new announcements and product... just a video by Charles Hanikson is making Asian to buy and pump Cardano which will not last any longer.I think after this post Cardano would go down to 0.47 cents which is necessary for so-called scientists in IOHK to know the ground reality. I am looking forward for testnet Dawn 3.0 to learn more about EOS and I know EOS gonna be the game changer !
author | tanishqyeverma |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t100548933z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 10:05:51 |
last_update | 2018-01-06 10:05:51 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 10:05: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 | 479 |
author_reputation | 1,624,635,234,378 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,489,589 |
net_rshares | 0 |
Cardano is a bargain today!
author | th1nkfast |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t212112042z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 21:21:12 |
last_update | 2018-01-08 21:21:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 21:21:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.121 HBD |
curator_payout_value | 0.040 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 2,874,658,722,940 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,089,048 |
net_rshares | 15,523,429,866 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
th1nkfast | 0 | 15,523,429,866 | 100% |
I think the point is not so much the claim that they invented DPoS, but that they **proved** DPoS *is* secure, in the sense that it enables a secure ledger (also rigorously defined by them), against a well-defined adversary and in a well-defined environment. It should be noted that this is not the same as proving that DPoS is secure under realistic conditions. That is still an open question...
author | tiagopaixao |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180108t154902695z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-08 15:48:57 |
last_update | 2018-01-08 15:48:57 |
depth | 1 |
children | 0 |
last_payout | 2018-01-15 15:48: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 | 401 |
author_reputation | 30,669,084,740 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,031,274 |
net_rshares | 0 |
Good read! Yeah cardano is very interesting . I think they're planning something awesome this 2018
author | tiffanyrej |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t080028771z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 08:00:27 |
last_update | 2018-01-06 08:00:27 |
depth | 1 |
children | 2 |
last_payout | 2018-01-13 08:00:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 1,015,760,434,678 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,470,425 |
net_rshares | 0 |
Can you please read the article and do your best to understand?
author | cyberberry |
---|---|
permlink | re-tiffanyrej-re-dan-peer-review-of-cardano-s-ouroboros-20180106t134216204z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 13:42:15 |
last_update | 2018-01-06 13:42:15 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 13:42:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 282,512,521,525 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,526,853 |
net_rshares | 0 |
Pretty sure dan does not find it interesting and basically just called it a worse dpos ripp off without giving credit where due.
author | edolascrypto |
---|---|
permlink | re-tiffanyrej-re-dan-peer-review-of-cardano-s-ouroboros-20180106t091937121z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 09:19:06 |
last_update | 2018-01-06 09:19:06 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 09:19:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 84,491,306,580 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,482,287 |
net_rshares | 0 |
I made a few grand on Cardano then sold and bought EOS - thanks for confirming my opinion.
author | tiger.woods |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t015455423z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 01:54:54 |
last_update | 2018-01-07 01:54:54 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 01:54: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 | 90 |
author_reputation | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,657,526 |
net_rshares | 0 |
Thanks @dan very complicated but I get the gist. I have been wondering lately what effect the launch of Eos will have on steemit. Is it a positive, negative or no effect?
author | tony10 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t070352461z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 07:03:51 |
last_update | 2018-01-06 07:03:51 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:03:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.213 HBD |
curator_payout_value | 0.067 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 2,970,454,725,681 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,462,225 |
net_rshares | 29,280,760,794 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tony10 | 0 | 29,280,760,794 | 100% |
@dan You wrote: >It is entirely possible that in some windows all block producer slots will be randomly assigned to the same producer. While this is statistically unlikely, it is not unreasonable to presume that a long sequence of blocks could be assigned to collusive peers. Could you be a bit more precise about what you mean by 'unlikely'? For example, within IPCC documents the term unlikely is defined as having a probability of zero to 33%. Is that similar to what you had in mind when writing this section? Thanks.
author | transcendence |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t183215128z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 18:32:15 |
last_update | 2018-01-06 18:32:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 18:32: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 | 525 |
author_reputation | 345,732,151 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,584,773 |
net_rshares | 0 |
thank you for information https://media.giphy.com/media/6oB3X3W6MYM3C/giphy.gif
author | utomo |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t145813376z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"image":["https://media.giphy.com/media/6oB3X3W6MYM3C/giphy.gif"],"app":"steemit/0.1"} |
created | 2018-01-07 14:58:15 |
last_update | 2018-01-07 14:58:15 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 14:58: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 | 79 |
author_reputation | 26,947,357,017 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,778,729 |
net_rshares | 0 |
And Charlie was at MIT today to talk about Ouroboros. @Dan sometimes looks like a Kid. It is alwyeas fighting against someone https://twitter.com/IOHK_Charles/status/950423016256737283
author | vit05 |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180109t011048436z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"links":["https://twitter.com/IOHK_Charles/status/950423016256737283"],"app":"steemit/0.1"} |
created | 2018-01-09 01:10:51 |
last_update | 2018-01-09 01:10:51 |
depth | 1 |
children | 1 |
last_payout | 2018-01-16 01:10: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 | 186 |
author_reputation | 2,649,977,071 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,129,084 |
net_rshares | 0 |
Yes, I would focus on bitshares. As it stand it seems a windows to shitcoins and nothing of value to the community. Plenty of new distributed exchanges without dictators :D
author | pip010 |
---|---|
permlink | re-vit05-re-dan-peer-review-of-cardano-s-ouroboros-20180109t102845331z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-09 10:28:45 |
last_update | 2018-01-09 10:28:45 |
depth | 2 |
children | 0 |
last_payout | 2018-01-16 10:28: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 | 0 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,219,754 |
net_rshares | 0 |
Great post sir, Is it a good time to invest in Cardano @dan
author | vnyrox |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t055633578z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 05:56:33 |
last_update | 2018-01-06 05:56:33 |
depth | 1 |
children | 11 |
last_payout | 2018-01-13 05:56:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.067 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | -58,366,725,544 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,452,443 |
net_rshares | 8,582,075,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
themonetaryfew | 0 | -6,495,563,585 | -1% | ||
pawnuts | 0 | 14,772,408,510 | 100% | ||
santanero714 | 0 | 113,749,100 | 100% | ||
bornprince | 0 | 191,481,224 | 100% |
lololololol... didn't read that post huh?
author | allcapsonezero |
---|---|
permlink | re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060449894z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:04:51 |
last_update | 2018-01-06 06:04:51 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 06:04:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 21,531,888,670,244 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,453,624 |
net_rshares | 458,128,261 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 98,377,600 | 100% | ||
rajafahad | 0 | 359,750,661 | 100% |
:D lol looks like i got unnecessary attention, but was thinking to invest in cardado so without hesitating i asked about it :p sorry about that readers :D
author | vnyrox |
---|---|
permlink | re-allcapsonezero-re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060951579z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:09:51 |
last_update | 2018-01-06 06:10:09 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 06:09: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 | 154 |
author_reputation | -58,366,725,544 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,454,357 |
net_rshares | 98,377,600 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 98,377,600 | 100% |
Quite the contrary friend, Dan is explaining how Cardano's design is slow and utterly...useless.
author | brandonk |
---|---|
permlink | re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t125027930z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 12:50:24 |
last_update | 2018-01-06 12:50:24 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 12:50: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 | 96 |
author_reputation | 57,134,789,343,839 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,517,193 |
net_rshares | 904,065,769 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ping77 | 0 | 538,512,678 | 100% | ||
rajafahad | 0 | 365,553,091 | 100% |
Did you read the post? Damn son..
author | eltomos |
---|---|
permlink | re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060011822z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:00:09 |
last_update | 2018-01-06 06:00:09 |
depth | 2 |
children | 1 |
last_payout | 2018-01-13 06:00:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.568 HBD |
curator_payout_value | 0.182 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 7,896,465,759 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,452,960 |
net_rshares | 77,710,103,727 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 101,451,900 | 100% | ||
ikegass33 | 0 | 75,770,977,427 | 100% | ||
bbhart | 0 | 610,227,200 | 100% | ||
thelifeofed | 0 | 610,227,200 | 100% | ||
ihavethesour | 0 | 617,220,000 | 100% |
lol I did but was it goes beyond my head i know my question is irreverent. :p
author | vnyrox |
---|---|
permlink | re-eltomos-re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060814225z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:08:15 |
last_update | 2018-01-06 06:08:15 |
depth | 3 |
children | 0 |
last_payout | 2018-01-13 06:08:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | -58,366,725,544 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,454,112 |
net_rshares | 101,451,900 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 101,451,900 | 100% |
No.
author | max-infeld |
---|---|
permlink | re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060844154z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:08:45 |
last_update | 2018-01-06 06:08:45 |
depth | 2 |
children | 0 |
last_payout | 2018-01-13 06:08: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 | 3 |
author_reputation | 2,039,194,374,573 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,454,193 |
net_rshares | 449,251,531 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 95,303,300 | 100% | ||
rajafahad | 0 | 353,948,231 | 100% |
That would be a NO
author | ponts |
---|---|
permlink | re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t055816641z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 05:59:36 |
last_update | 2018-01-06 05:59:36 |
depth | 2 |
children | 4 |
last_payout | 2018-01-13 05:59: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 | 18 |
author_reputation | 601,101,103,702 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,452,876 |
net_rshares | 110,674,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 110,674,800 | 100% |
Thanks @ponts what do you think where should i invest? any suggestions?
author | vnyrox |
---|---|
permlink | re-ponts-re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t061100498z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["ponts"],"app":"steemit/0.1"} |
created | 2018-01-06 06:11:00 |
last_update | 2018-01-06 06:11:00 |
depth | 3 |
children | 3 |
last_payout | 2018-01-13 06:11: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 | 72 |
author_reputation | -58,366,725,544 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,454,526 |
net_rshares | 110,674,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 110,674,800 | 100% |
Nice sharing... Good videos for us information... Thank you, and success is always for you @dan
author | volcom |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t060253114z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"} |
created | 2018-01-06 06:03:00 |
last_update | 2018-01-06 06:03:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:03: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 | 95 |
author_reputation | -5,412,931,693 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,453,336 |
net_rshares | 92,229,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
santanero714 | 0 | 92,229,000 | 100% |
Glad I invested in Steem and EOS instead of this.
author | wakeupnd |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t064131361z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 06:41:42 |
last_update | 2018-01-06 06:41:42 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 06:41: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 | 49 |
author_reputation | 73,088,931,691,967 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,458,979 |
net_rshares | 0 |
Proof-of-god for the win! I would love if you could come up with some kind of algorithm or system that would allow a coins value to rise when the coin was distributed more evenly, discouraging the growth of super ultra whales. I don’t know if this is even possible, but this would truly be a revolutionary move! Always glad to see into the mind of the man who created this beast! I’ve just started investing in other cryptos thanks to the recent SBd spike and made EOS my top investment. :-D I was going to make Cardano my 4th or 5th biggest investment but if no one can change my mind in the comments, you may have convinced me against it.
author | whatamidoing |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180106t073455507z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-06 07:35:00 |
last_update | 2018-01-06 07:36:48 |
depth | 1 |
children | 0 |
last_payout | 2018-01-13 07:35: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 | 646 |
author_reputation | 186,276,751,633,766 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,466,661 |
net_rshares | 400,370,043 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
markzuckerbergs | 0 | 400,370,043 | 100% |
amazing
author | wondratv |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t035931593z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 03:59:30 |
last_update | 2018-01-07 03:59:30 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 03: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 | 7 |
author_reputation | 468,484,154,735 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,674,718 |
net_rshares | 0 |
i really find Neo cardano and Eos great project, and very interested in EOS for a proof of concept for a project i am working on. right now i am reviewing about inter blockchains communications in eos and how could be a facebook app be modeled in eos with different constitutions..
author | xfreemanx |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180110t130342119z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-10 13:04:06 |
last_update | 2018-01-10 13:04:06 |
depth | 1 |
children | 0 |
last_payout | 2018-01-17 13:04: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 | 281 |
author_reputation | 13,725,461,332 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,493,756 |
net_rshares | 0 |
No offence, but please come back. We need you more than ever. Division is bad. As the British miners of the 1980s found. Unity is strength.
author | ygriffiny |
---|---|
permlink | re-dan-peer-review-of-cardano-s-ouroboros-20180107t222953625z |
category | cardamon |
json_metadata | {"tags":["cardamon"],"app":"steemit/0.1"} |
created | 2018-01-07 22:29:51 |
last_update | 2018-01-07 22:29:51 |
depth | 1 |
children | 0 |
last_payout | 2018-01-14 22:29:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.100 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 234,745,476,838 |
root_title | "Peer Review of Cardano's Ouroboros" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,857,411 |
net_rshares | 13,203,454,183 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ygriffiny | 0 | 13,203,454,183 | 100% |
Hola bienvenido a esta maravillosa comunidad espero sea de mucho éxitos para ti y puedas aprender cosas nuevas te saluda tu amigo @yoelvis11
author | yoelvis11 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-dan-201816t23279624z | ||||||
category | cardamon | ||||||
json_metadata | {"tags":["cardamon","ouroboros","eos","steem","bitshares"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-01-06 21:08:06 | ||||||
last_update | 2018-01-06 21:08:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-01-13 21:08: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 | 140 | ||||||
author_reputation | 9,807,296,431 | ||||||
root_title | "Peer Review of Cardano's Ouroboros" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 27,613,614 | ||||||
net_rshares | 0 |