create account

Peer Review of Cardano's Ouroboros by dan

View this thread on: hive.blogpeakd.comecency.com
· @dan ·
Peer Review of Cardano's Ouroboros
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.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 904 others
👎  , , , ,
properties (23)
authordan
permlinkpeer-review-of-cardano-s-ouroboros
categorycardamon
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"}
created2018-01-06 05:54:30
last_update2018-01-06 05:54:30
depth0
children407
last_payout2018-01-13 05:54:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,862
author_reputation155,470,101,136,708
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout0.000 HBD
percent_hbd10,000
post_id27,452,173
net_rshares136,966,211,136,997
author_curate_reward""
vote details (973)
@adammac ·
$0.28
I like Steem Dan but you seem salty. Charles has also poked holes in the claims of EOS.
👍  , , ,
👎  
properties (23)
authoradammac
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t130929381z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 13:09:30
last_update2018-01-06 13:09:30
depth1
children9
last_payout2018-01-13 13:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.270 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation271,546,135,984
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,520,641
net_rshares29,246,608,934
author_curate_reward""
vote details (5)
@dan ·
$2.07
properties (23)
authordan
permlinkre-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t143411987z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 14:34:12
last_update2018-01-06 14:34:12
depth2
children2
last_payout2018-01-13 14:34:12
cashout_time1969-12-31 23:59:59
total_payout_value1.606 HBD
curator_payout_value0.464 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation155,470,101,136,708
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,537,351
net_rshares213,110,300,404
author_curate_reward""
vote details (21)
@introvertspeaks ·
$0.28
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.
👍  , ,
properties (23)
authorintrovertspeaks
permlinkre-dan-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180107t051619961z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["eosio","steem","dan"],"app":"steemit/0.1"}
created2018-01-07 05:16:18
last_update2018-01-07 05:16:18
depth3
children0
last_payout2018-01-14 05:16:18
cashout_time1969-12-31 23:59:59
total_payout_value0.232 HBD
curator_payout_value0.047 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length347
author_reputation-4,351,658,764,138
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,685,653
net_rshares28,959,484,555
author_curate_reward""
vote details (3)
@michaelmcawesome ·
Bam!
properties (22)
authormichaelmcawesome
permlinkre-dan-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t162253715z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 16:22:54
last_update2018-01-06 16:22:54
depth3
children0
last_payout2018-01-13 16:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation1,403,414,316,595
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,559,824
net_rshares0
@healthbasics ·
@adammac do you realize that you flagged yourself on this post?
properties (22)
authorhealthbasics
permlinkre-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180108t075109846z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["adammac"],"app":"steemit/0.1"}
created2018-01-08 07:51:06
last_update2018-01-08 07:51:06
depth2
children0
last_payout2018-01-15 07:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation1,410,280,625,404
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,943,967
net_rshares0
@kafkanarchy84 ·
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.
👍  
properties (23)
authorkafkanarchy84
permlinkre-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t192350910z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 19:23:51
last_update2018-01-06 19:23:51
depth2
children2
last_payout2018-01-13 19:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation349,526,315,896,646
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,594,755
net_rshares619,520,000
author_curate_reward""
vote details (1)
@beanz ·
He did deserve credit
properties (22)
authorbeanz
permlinkre-kafkanarchy84-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180107t122610985z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 12:26:12
last_update2018-01-07 12:26:12
depth3
children0
last_payout2018-01-14 12:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation77,215,574,122,930
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,749,612
net_rshares0
@whyknot ·
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.
properties (22)
authorwhyknot
permlinkre-kafkanarchy84-re-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180108t142252939z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 14:22:54
last_update2018-01-08 14:22:54
depth3
children0
last_payout2018-01-15 14:22:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation112,320,686,869
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,014,170
net_rshares0
@paullintilhac ·
reference?
properties (22)
authorpaullintilhac
permlinkre-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t182434517z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 18:24:33
last_update2018-01-06 18:24:33
depth2
children0
last_payout2018-01-13 18:24:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation38,849,021,305
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,583,364
net_rshares0
@the-ego-is-you ·
Upvoting you just because, as Dan, I would like to see those holes.
properties (22)
authorthe-ego-is-you
permlinkre-adammac-re-dan-peer-review-of-cardano-s-ouroboros-20180106t185216429z
categorycardamon
json_metadata{"tags":["cardamon"],"community":"busy","app":"busy/2.2.0"}
created2018-01-06 18:52:18
last_update2018-01-06 18:52:18
depth2
children0
last_payout2018-01-13 18:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation7,031,347,556,614
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,588,490
net_rshares0
@adityabhat ·
Need to get more EOS I guess.
👍  
properties (23)
authoradityabhat
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t200512794z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 20:05:12
last_update2018-01-06 20:05:12
depth1
children0
last_payout2018-01-13 20:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation413,674,975,747
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,602,460
net_rshares0
author_curate_reward""
vote details (1)
@akagiks ·
interensante, no entendi nada, pero no creo que importe. Gracias por el post, saludos!
properties (22)
authorakagiks
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t061822387z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 05:48:00
last_update2018-01-08 05:48:00
depth1
children0
last_payout2018-01-15 05:48:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation1,364,772,198
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,925,562
net_rshares0
@anonymint · (edited)
$0.09
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.
👍  , ,
properties (23)
authoranonymint
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180618t084448784z
categorycardamon
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"}
created2018-06-18 08:44:45
last_update2018-06-20 12:16:06
depth1
children1
last_payout2018-06-25 08:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.064 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16,267
author_reputation28,085,935,540,836
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,199,069
net_rshares40,285,377,467
author_curate_reward""
vote details (3)
@asifhb76 ·
Yes, your Presume is near to Reality. Thanks a lot for nice and clear information from you.
properties (22)
authorasifhb76
permlinkre-anonymint-re-dan-peer-review-of-cardano-s-ouroboros-20180619t144148213z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-06-19 14:41:48
last_update2018-06-19 14:41:48
depth2
children0
last_payout2018-06-26 14:41:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation50,013,636,346
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,367,960
net_rshares0
@arcange ·
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
properties (22)
authorarcange
permlinkre-peer-review-of-cardano-s-ouroboros-20180106t160254000z
categorycardamon
json_metadata""
created2018-01-07 15:02:54
last_update2018-01-07 15:02:54
depth1
children0
last_payout2018-01-14 15:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length246
author_reputation1,148,349,221,690,653
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,779,589
net_rshares0
@arrax ·
Wow - Cryptos in peer-reviewed science!
👍  
properties (23)
authorarrax
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t190639921z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 19:06:39
last_update2018-01-06 19:06:39
depth1
children0
last_payout2018-01-13 19:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation1,944,025,110,290
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,591,506
net_rshares1,021,163,037
author_curate_reward""
vote details (1)
@auliaturrahman ·
$1.77
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...
👍  , ,
properties (23)
authorauliaturrahman
permlinkre-dan-201817t38284z
categorycardamon
json_metadata{"tags":"cardamon","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2018-01-06 20:08:33
last_update2018-01-06 20:08:33
depth1
children1
last_payout2018-01-13 20:08:33
cashout_time1969-12-31 23:59:59
total_payout_value1.319 HBD
curator_payout_value0.454 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,067
author_reputation1,348,421,939,968
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,603,052
net_rshares190,530,773,436
author_curate_reward""
vote details (3)
@rajafahad ·
great post dude
properties (22)
authorrajafahad
permlinkre-auliaturrahman-re-dan-201817t38284z-20180113t215632844z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-13 21:56:36
last_update2018-01-13 21:56:36
depth2
children0
last_payout2018-01-20 21:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation-6,279,412,433
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,321,657
net_rshares0
@awaisquarni · (edited)
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
👍  ,
👎  
properties (23)
authorawaisquarni
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t060556292z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1","users":["dan"]}
created2018-01-06 06:05:54
last_update2018-01-06 06:07:18
depth1
children3
last_payout2018-01-13 06:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length378
author_reputation-32,141,480,680
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,453,772
net_rshares-2,189,895,983
author_curate_reward""
vote details (3)
@ctbradley ·
Scientifically proven as comfortable? Would you mind expanding on what you mean by comfortable and the methodology behind it's scientifically proven comfortability?
👍  
properties (23)
authorctbradley
permlinkre-awaisquarni-re-dan-peer-review-of-cardano-s-ouroboros-20180106t064323549z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:43:24
last_update2018-01-06 06:43:24
depth2
children2
last_payout2018-01-13 06:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation14,291,670,541
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,459,226
net_rshares411,972,532
author_curate_reward""
vote details (1)
@godratio ·
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>
👍  ,
properties (23)
authorgodratio
permlinkre-ctbradley-re-awaisquarni-re-dan-peer-review-of-cardano-s-ouroboros-20180106t131132210z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 13:11:21
last_update2018-01-06 13:11:21
depth3
children1
last_payout2018-01-13 13:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation16,153,196
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,520,975
net_rshares1,033,804,592
author_curate_reward""
vote details (2)
@benjojo ·
Where is CH's honour?
👍  
properties (23)
authorbenjojo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t062731544z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:27:30
last_update2018-01-06 06:27:30
depth1
children0
last_payout2018-01-13 06:27:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation120,749,050,383,122
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,456,932
net_rshares1,160,486,034
author_curate_reward""
vote details (1)
@bishalmanandhar ·
Worth reading ,thankyou for sharing
properties (22)
authorbishalmanandhar
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t155516479z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 15:55:18
last_update2018-01-07 15:55:18
depth1
children0
last_payout2018-01-14 15:55:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation484,475,324
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,789,890
net_rshares0
@bitgeek ·
comment
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.
properties (22)
authorbitgeek
permlinkre-peer-review-of-cardano-s-ouroboros-20180106t080823
categorycardamon
json_metadata""
created2018-01-06 08:08:24
last_update2018-01-06 08:08:24
depth1
children0
last_payout2018-01-13 08:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length637
author_reputation13,049,044,453,787
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,471,599
net_rshares0
@bitton ·
$2.88
This man is a BlockChain genius!💂
👍  ,
properties (23)
authorbitton
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t195917418z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 20:02:45
last_update2018-01-06 20:02:45
depth1
children0
last_payout2018-01-13 20:02:45
cashout_time1969-12-31 23:59:59
total_payout_value2.650 HBD
curator_payout_value0.234 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation1,607,699,612,184
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,601,973
net_rshares298,642,925,677
author_curate_reward""
vote details (2)
@bitton ·
$1.37
Thanks! I was just about tp check this topic.
👍  
properties (23)
authorbitton
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t233447422z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 23:34:48
last_update2018-01-07 23:34:48
depth1
children0
last_payout2018-01-14 23:34:48
cashout_time1969-12-31 23:59:59
total_payout_value1.354 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation1,607,699,612,184
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,867,336
net_rshares131,106,776,012
author_curate_reward""
vote details (1)
@blaineb ·
$0.03
Much appreciated fir the heads up @dan, i was about to pull the trigger on investing. @bitshares phone app was buggy so i bailed.
👍  ,
properties (23)
authorblaineb
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t060122947z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan","bitshares"],"app":"steemit/0.1"}
created2018-01-06 06:01:24
last_update2018-01-06 06:01:24
depth1
children2
last_payout2018-01-13 06:01:24
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation5,679,606,233,585
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,453,138
net_rshares2,877,081,544
author_curate_reward""
vote details (2)
@edolascrypto ·
$0.30
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
👍  , , , ,
properties (23)
authoredolascrypto
permlinkre-blaineb-re-dan-peer-review-of-cardano-s-ouroboros-20180106t091250599z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 09:12:18
last_update2018-01-06 09:12:18
depth2
children1
last_payout2018-01-13 09:12:18
cashout_time1969-12-31 23:59:59
total_payout_value0.245 HBD
curator_payout_value0.057 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation84,491,306,580
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,481,296
net_rshares31,140,465,812
author_curate_reward""
vote details (5)
@blaineb ·
$0.06
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.
👍  , , ,
properties (23)
authorblaineb
permlinkre-edolascrypto-re-blaineb-re-dan-peer-review-of-cardano-s-ouroboros-20180106t093103652z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 09:31:06
last_update2018-01-06 09:31:06
depth3
children0
last_payout2018-01-13 09:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length189
author_reputation5,679,606,233,585
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,484,150
net_rshares6,691,724,237
author_curate_reward""
vote details (4)
@brianvigeant ·
Stumbled across this and I’m impressed. Great work
👍  
properties (23)
authorbrianvigeant
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t035812126z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 03:58:12
last_update2018-01-09 03:58:12
depth1
children0
last_payout2018-01-16 03:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation31,906,591,964
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,156,829
net_rshares500,817,500
author_curate_reward""
vote details (1)
@btcgame ·
thank you good informative sir.........
👍  
properties (23)
authorbtcgame
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t044433780z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 04:44:33
last_update2018-01-08 04:44:33
depth1
children0
last_payout2018-01-15 04:44:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation4,950,253,657
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,915,889
net_rshares230,839,039
author_curate_reward""
vote details (1)
@ceattlestretch ·
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 🙏
properties (22)
authorceattlestretch
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t190419894z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 19:04:21
last_update2018-01-08 19:04:21
depth1
children2
last_payout2018-01-15 19:04:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation1,554,315,308,399
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,067,138
net_rshares0
@pip010 ·
well ... this reply alone explains ALOT about whats wrong in crypto right now ...
properties (22)
authorpip010
permlinkre-ceattlestretch-re-dan-peer-review-of-cardano-s-ouroboros-20180109t102945049z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 10:29:45
last_update2018-01-09 10:29:45
depth2
children1
last_payout2018-01-16 10:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,219,916
net_rshares0
@ceattlestretch · (edited)
Please expand
properties (22)
authorceattlestretch
permlinkre-pip010-re-ceattlestretch-re-dan-peer-review-of-cardano-s-ouroboros-20180109t173451138z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 17:34:51
last_update2018-01-09 17:36:24
depth3
children0
last_payout2018-01-16 17:34:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation1,554,315,308,399
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,303,093
net_rshares0
@chaka321 ·
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
properties (22)
authorchaka321
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t231739620z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://raiblocks.net/page/representatives.php?limit=100"],"app":"steemit/0.1"}
created2018-01-06 23:17:42
last_update2018-01-06 23:17:42
depth1
children0
last_payout2018-01-13 23:17:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation34,519,613,062
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,633,581
net_rshares0
@chrone ·
$0.03
Shots fired, lol jk would be interested to hear their response.
👍  
properties (23)
authorchrone
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t164800760z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 16:48:03
last_update2018-01-06 16:48:03
depth1
children4
last_payout2018-01-13 16:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation1,645,171,029,762
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,564,884
net_rshares3,415,329,786
author_curate_reward""
vote details (1)
@emantas ·
$0.04
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"
👍  , , , , ,
properties (23)
authoremantas
permlinkre-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180106t205650071z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://eprint.iacr.org/2014/765"],"app":"steemit/0.1"}
created2018-01-06 20:56:51
last_update2018-01-06 20:56:51
depth2
children3
last_payout2018-01-13 20:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,346
author_reputation13,365,384,561
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,611,613
net_rshares4,846,447,887
author_curate_reward""
vote details (6)
@emantas ·
Found at https://www.reddit.com/r/cardano/comments/7oibsi/some_shots_fired_across_the_bow/
👍  ,
properties (23)
authoremantas
permlinkre-emantas-re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180106t205720921z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://www.reddit.com/r/cardano/comments/7oibsi/some_shots_fired_across_the_bow/"],"app":"steemit/0.1"}
created2018-01-06 20:57:21
last_update2018-01-06 20:57:21
depth3
children0
last_payout2018-01-13 20:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation13,365,384,561
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,611,707
net_rshares615,320,000
author_curate_reward""
vote details (2)
@surfyogi ·
In my experience ETH software is just horrible, the worst, and I won't let my family use it...
properties (22)
authorsurfyogi
permlinkre-emantas-re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094200935z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 09:42:00
last_update2018-01-12 09:42:00
depth3
children0
last_payout2018-01-19 09:42:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,963,882
net_rshares0
@whyknot ·
$1.44
"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.
👍  
properties (23)
authorwhyknot
permlinkre-emantas-re-chrone-re-dan-peer-review-of-cardano-s-ouroboros-20180108t143938333z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 14:39:39
last_update2018-01-08 14:39:39
depth3
children0
last_payout2018-01-15 14:39:39
cashout_time1969-12-31 23:59:59
total_payout_value1.084 HBD
curator_payout_value0.359 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length305
author_reputation112,320,686,869
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,017,576
net_rshares132,713,813,345
author_curate_reward""
vote details (1)
@clickside · (edited)
$5.31
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.
👍  , , , , , , , , , , , , , , ,
properties (23)
authorclickside
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t063222333z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:32:24
last_update2018-01-06 06:33:30
depth1
children1
last_payout2018-01-13 06:32:24
cashout_time1969-12-31 23:59:59
total_payout_value4.065 HBD
curator_payout_value1.242 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length995
author_reputation121,437,739,685
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,457,610
net_rshares547,630,065,262
author_curate_reward""
vote details (16)
@benjojo ·
$0.08
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.
👍  ,
properties (23)
authorbenjojo
permlinkre-clickside-re-dan-peer-review-of-cardano-s-ouroboros-20180106t070856376z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:08:57
last_update2018-01-06 07:08:57
depth2
children0
last_payout2018-01-13 07:08:57
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation120,749,050,383,122
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,462,973
net_rshares9,013,926,348
author_curate_reward""
vote details (2)
@cob · (edited)
$719.22
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.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 3 others
👎  , , ,
properties (23)
authorcob
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t212619135z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 21:26:21
last_update2018-01-06 21:30:06
depth1
children109
last_payout2018-01-13 21:26:21
cashout_time1969-12-31 23:59:59
total_payout_value562.790 HBD
curator_payout_value156.432 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length365
author_reputation28,093,007,195,816
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,616,818
net_rshares74,330,714,089,426
author_curate_reward""
vote details (71)
@anonymint · (edited)
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.
properties (22)
authoranonymint
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180618t140709777z
categorycardamon
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"]}
created2018-06-18 14:07:06
last_update2018-06-18 14:19:51
depth2
children0
last_payout2018-06-25 14:07:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,502
author_reputation28,085,935,540,836
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,230,075
net_rshares0
@benjojo ·
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.
👍  ,
properties (23)
authorbenjojo
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180106t215331965z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 21:53:33
last_update2018-01-06 21:53:33
depth2
children0
last_payout2018-01-13 21:53:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length196
author_reputation120,749,050,383,122
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,621,051
net_rshares330,891,144
author_curate_reward""
vote details (2)
@drakos ·
Nothing personal @cob, but I'm downvoting your comment, $890 is way too excessive for a few lines of text.
properties (22)
authordrakos
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t060019262z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["cob"],"app":"steemit/0.1"}
created2018-01-09 06:01:12
last_update2018-01-09 06:01:12
depth2
children0
last_payout2018-01-16 06:01:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation112,280,226,665,329
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,177,256
net_rshares0
@farah-kamran ·
please visit my post you ll find good content upvote me
properties (22)
authorfarah-kamran
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t082222461z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 08:22:57
last_update2018-01-09 08:22:57
depth2
children0
last_payout2018-01-16 08:22:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation175,703,680,965
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,198,979
net_rshares0
@foovler ·
Wtf? 1k for your comment? #mindblown
👍  
properties (23)
authorfoovler
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t012413384z
categorycardamon
json_metadata{"tags":["cardamon","mindblown"],"app":"steemit/0.1"}
created2018-01-07 01:24:15
last_update2018-01-07 01:24:15
depth2
children1
last_payout2018-01-14 01:24:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation17,885,206,395,471
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,653,332
net_rshares569,171,000
author_curate_reward""
vote details (1)
@khoa ·
welcome to steemit.
properties (22)
authorkhoa
permlinkre-foovler-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t040222297z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 04:02:21
last_update2018-01-08 04:02:21
depth3
children0
last_payout2018-01-15 04:02:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation2,970,078,109,290
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,909,322
net_rshares0
@howi ·
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 ;)
properties (22)
authorhowi
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t061657323z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 06:17:00
last_update2018-01-09 06:17:00
depth2
children0
last_payout2018-01-16 06:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,179,891
net_rshares0
@introvertspeaks · (edited)
$0.06
I only up-voted this comment because I want to grab a slice of this big pizza.
👍  
👎  
properties (23)
authorintrovertspeaks
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t043524668z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:35:24
last_update2018-01-07 20:39:18
depth2
children2
last_payout2018-01-14 04:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.047 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation-4,351,658,764,138
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,679,780
net_rshares6,947,299,249
author_curate_reward""
vote details (2)
@beanz ·
$0.44
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
👍  , , ,
properties (23)
authorbeanz
permlinkre-introvertspeaks-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t121453161z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 12:14:54
last_update2018-01-07 12:14:54
depth3
children1
last_payout2018-01-14 12:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.344 HBD
curator_payout_value0.096 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation77,215,574,122,930
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,747,797
net_rshares44,201,742,005
author_curate_reward""
vote details (4)
@jonbee ·
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
👎  
properties (23)
authorjonbee
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t150556975z
categorycardamon
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"}
created2018-01-07 15:06:39
last_update2018-01-07 15:06:39
depth2
children0
last_payout2018-01-14 15:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation-455,593,770,537
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,780,328
net_rshares-603,013,600
author_curate_reward""
vote details (1)
@ned · (edited)
$318.49
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.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 161 others
👎  ,
properties (23)
authorned
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t002359345z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["theoretical"],"app":"steemit/0.1"}
created2018-01-07 00:24:00
last_update2018-01-08 00:57:36
depth2
children85
last_payout2018-01-14 00:24:00
cashout_time1969-12-31 23:59:59
total_payout_value239.268 HBD
curator_payout_value79.217 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,749
author_reputation94,449,026,656,258
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,644,258
net_rshares32,693,418,834,595
author_curate_reward""
vote details (227)
@alao ·
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!!
👍  
properties (23)
authoralao
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t041113250z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:11:15
last_update2018-01-07 04:11:15
depth3
children3
last_payout2018-01-14 04:11:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation23,510,767,447,737
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,676,404
net_rshares0
author_curate_reward""
vote details (1)
@alexandraioana26 ·
@ned thanks for sharing with us the timeline!
properties (22)
authoralexandraioana26
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180111t092410307z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"}
created2018-01-11 09:24:09
last_update2018-01-11 09:24:09
depth3
children0
last_payout2018-01-18 09:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation9,768,002,864,979
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,708,736
net_rshares0
@benjojo ·
$0.33
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.
👍  , , , , , , ,
properties (23)
authorbenjojo
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t160507919z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 16:05:06
last_update2018-01-07 16:05:06
depth3
children2
last_payout2018-01-14 16:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.265 HBD
curator_payout_value0.065 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation120,749,050,383,122
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,791,843
net_rshares32,866,211,405
author_curate_reward""
vote details (8)
@berniesanders ·
$9.84
If you want copies of what I've got, let me know!  Could be quite a collab...
👍  , , , , , , , , , , , , , ,
properties (23)
authorberniesanders
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t141111127z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 14:11:09
last_update2018-01-08 14:11:09
depth3
children1
last_payout2018-01-15 14:11:09
cashout_time1969-12-31 23:59:59
total_payout_value9.838 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation600,251,775,828,524
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,011,953
net_rshares904,347,173,082
author_curate_reward""
vote details (15)
@btcmillionaire ·
$2.98
Some big details there... A bit disappointing he didn't just stay with Steem...
👍  , , , , , , , , , , , ,
properties (23)
authorbtcmillionaire
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t024308738z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 02:42:54
last_update2018-01-07 02:42:54
depth3
children5
last_payout2018-01-14 02:42:54
cashout_time1969-12-31 23:59:59
total_payout_value2.960 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation8,659,596,341,168
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,664,066
net_rshares303,753,197,271
author_curate_reward""
vote details (13)
@cardanofan ·
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.
👍  , ,
properties (23)
authorcardanofan
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180114t094423632z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-14 09:44:24
last_update2018-01-14 09:44:24
depth3
children1
last_payout2018-01-21 09:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length450
author_reputation1,308,104,787
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,420,570
net_rshares614,503,440
author_curate_reward""
vote details (3)
@coinstar ·
$0.31
interesting ..i hope you all find peace
👍  , , ,
properties (23)
authorcoinstar
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t033848131z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:38:45
last_update2018-01-07 03:38:45
depth3
children1
last_payout2018-01-14 03:38:45
cashout_time1969-12-31 23:59:59
total_payout_value0.237 HBD
curator_payout_value0.068 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation493,744,090
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,671,904
net_rshares31,599,621,845
author_curate_reward""
vote details (4)
@cryptofeez ·
you sound salty
properties (22)
authorcryptofeez
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180724t211441179z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-07-24 21:14:42
last_update2018-07-24 21:14:42
depth3
children0
last_payout2018-07-31 21:14:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation552,241,539,164
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,857,987
net_rshares0
@cryptohazard ·
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.
👍  
properties (23)
authorcryptohazard
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t165105709z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 16:51:06
last_update2018-01-08 16:51:06
depth3
children0
last_payout2018-01-15 16:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length199
author_reputation17,111,780,434,071
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,042,658
net_rshares609,166,800
author_curate_reward""
vote details (1)
@cryptosism ·
Very informative!
properties (22)
authorcryptosism
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180114t021604407z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-14 02:16:06
last_update2018-01-14 02:16:06
depth3
children0
last_payout2018-01-21 02:16:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,357,632
net_rshares0
@darksea ·
That's how analysis is done. Health in their hands @ned
properties (22)
authordarksea
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180110t001132879z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"}
created2018-01-10 00:11:39
last_update2018-01-10 00:11:39
depth3
children0
last_payout2018-01-17 00:11:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation2,584,855,389,933
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,366,790
net_rshares0
@davidconstantine ·
$0.71
Wow, nice info, thanks for sharing this with us.
👍  
properties (23)
authordavidconstantine
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t105638503z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 10:54:48
last_update2018-01-08 10:54:48
depth3
children0
last_payout2018-01-15 10:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.538 HBD
curator_payout_value0.174 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation1,789,023,643,502
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,974,301
net_rshares65,596,256,172
author_curate_reward""
vote details (1)
@davordm ·
Ethereum is best crypto
properties (22)
authordavordm
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180115t092050796z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-15 09:20:54
last_update2018-01-15 09:20:54
depth3
children1
last_payout2018-01-22 09:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation293,169,590,484
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,659,814
net_rshares0
@dhouse ·
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?
properties (22)
authordhouse
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t233936656z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 23:39:36
last_update2018-01-09 23:39:36
depth3
children0
last_payout2018-01-16 23:39:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length192
author_reputation4,150,202,158,075
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,361,805
net_rshares0
@duartenunes ·
I like boobs
properties (22)
authorduartenunes
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t165816801z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 16:59:36
last_update2018-01-08 16:59:36
depth3
children0
last_payout2018-01-15 16:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation10,747,053,111,376
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,044,290
net_rshares0
@fahedawan ·
Wow Nice Share How can I see the full event?
properties (22)
authorfahedawan
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t192346370z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 19:23:45
last_update2018-01-09 19:23:45
depth3
children0
last_payout2018-01-16 19:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation7,341,724,772
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,321,813
net_rshares0
@febinkk ·
$0.06
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.
👍  , , , , , , , , ,
properties (23)
authorfebinkk
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t153041603z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 15:30:27
last_update2018-01-07 15:30:27
depth3
children1
last_payout2018-01-14 15:30:27
cashout_time1969-12-31 23:59:59
total_payout_value0.064 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation6,009,194,830
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,785,048
net_rshares6,528,017,172
author_curate_reward""
vote details (10)
@fproductions ·
$3.31
pretty nice analysis you have done.
👍  , , , ,
properties (23)
authorfproductions
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t153256241z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 15:33:00
last_update2018-01-07 15:33:00
depth3
children2
last_payout2018-01-14 15:33:00
cashout_time1969-12-31 23:59:59
total_payout_value2.490 HBD
curator_payout_value0.822 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation42,945,048,272,112
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,785,599
net_rshares327,082,455,320
author_curate_reward""
vote details (5)
@fuzzyvest · (edited)
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.
👍  , ,
properties (23)
authorfuzzyvest
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t165333173z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1","image":["https://s10.postimg.org/yauxm3v1l/image-1.png"]}
created2018-01-08 16:53:39
last_update2018-01-08 17:01:45
depth3
children2
last_payout2018-01-15 16:53:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length630
author_reputation16,076,269,237,260
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,043,175
net_rshares1,183,855,561
author_curate_reward""
vote details (3)
@gchan129 ·
I'd read that book.
properties (22)
authorgchan129
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t171542622z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 17:15:42
last_update2018-01-07 17:15:42
depth3
children0
last_payout2018-01-14 17:15:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation455,990,084,946
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,802,958
net_rshares0
@intelliguy ·
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.
properties (22)
authorintelliguy
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180121t082316449z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned","dan"],"app":"steemit/0.1"}
created2018-01-21 08:23:18
last_update2018-01-21 08:23:18
depth3
children0
last_payout2018-01-28 08:23:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length476
author_reputation62,276,657,564,898
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,052,401
net_rshares0
@jankasparec ·
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!
👍  
properties (23)
authorjankasparec
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180116t050210852z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"}
created2018-01-16 05:02:12
last_update2018-01-16 05:02:12
depth3
children0
last_payout2018-01-23 05:02:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length416
author_reputation68,292,610,382,616
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,861,719
net_rshares0
author_curate_reward""
vote details (1)
@jerrybanfield · (edited)
> Contributed from my iPhone. Please excuse any grammatical mistakes or errors.

Did you type that or mix in speech to text?
properties (22)
authorjerrybanfield
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t132937493z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 13:29:36
last_update2018-01-08 13:30:36
depth3
children1
last_payout2018-01-15 13:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation362,393,802,961,900
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,003,127
net_rshares0
@johnchamberlain · (edited)
$0.03
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 ?
👍  
properties (23)
authorjohnchamberlain
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t091252184z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 09:12:57
last_update2018-01-07 09:45:00
depth3
children1
last_payout2018-01-14 09:12:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length447
author_reputation368,051,311,646
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,718,498
net_rshares3,146,719,097
author_curate_reward""
vote details (1)
@knircky ·
$17.44
Thx Ned!
👍  , ,
properties (23)
authorknircky
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t000610574z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 00:06:09
last_update2018-01-08 00:06:09
depth3
children1
last_payout2018-01-15 00:06:09
cashout_time1969-12-31 23:59:59
total_payout_value13.078 HBD
curator_payout_value4.357 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation212,905,587,244,262
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,872,245
net_rshares1,663,667,015,019
author_curate_reward""
vote details (3)
@leftbank ·
$0.44
thanks for sharing!
👍  , ,
properties (23)
authorleftbank
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t030548718z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:05:48
last_update2018-01-07 03:05:48
depth3
children0
last_payout2018-01-14 03:05:48
cashout_time1969-12-31 23:59:59
total_payout_value0.438 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation55,043,916,818,247
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,667,316
net_rshares44,876,409,766
author_curate_reward""
vote details (3)
@lukestokes ·
$2.46
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. :)
👍  , , , , , , , , , ,
properties (23)
authorlukestokes
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t014238334z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:42:39
last_update2018-01-07 01:42:39
depth3
children3
last_payout2018-01-14 01:42:39
cashout_time1969-12-31 23:59:59
total_payout_value1.871 HBD
curator_payout_value0.590 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length480
author_reputation556,640,380,599,219
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,655,915
net_rshares252,131,899,336
author_curate_reward""
vote details (11)
@ma8trix ·
$0.39
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.
👍  , , , , , , , ,
properties (23)
authorma8trix
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t033719094z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:37:18
last_update2018-01-07 03:37:18
depth3
children19
last_payout2018-01-14 03:37:18
cashout_time1969-12-31 23:59:59
total_payout_value0.390 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length292
author_reputation299,244,601,106
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,671,672
net_rshares40,153,544,897
author_curate_reward""
vote details (9)
@marketanalysis ·
Great breakdown
👍  
properties (23)
authormarketanalysis
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t140708119z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 14:07:48
last_update2018-01-07 14:07:48
depth3
children0
last_payout2018-01-14 14:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation159,257,584,031
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,768,631
net_rshares707,209,799
author_curate_reward""
vote details (1)
@matthiasjohn ·
Thanks for sharing @cob
properties (22)
authormatthiasjohn
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t084218691z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["cob"],"app":"steemit/0.1"}
created2018-01-08 08:48:36
last_update2018-01-08 08:48:36
depth3
children0
last_payout2018-01-15 08:48:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation834,004,459,441
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,952,662
net_rshares0
@maven360 ·
$0.16
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>
👍  ,
properties (23)
authormaven360
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t014116670z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:41:06
last_update2018-01-07 01:41:06
depth3
children0
last_payout2018-01-14 01:41:06
cashout_time1969-12-31 23:59:59
total_payout_value0.126 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length407
author_reputation1,409,115,525,495
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,655,649
net_rshares16,630,052,568
author_curate_reward""
vote details (2)
@newalturim · (edited)
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!
👍  ,
properties (23)
authornewalturim
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t120121110z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 12:01:21
last_update2018-01-07 12:16:21
depth3
children0
last_payout2018-01-14 12:01:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation22,328,738,866
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,745,448
net_rshares806,536,579
author_curate_reward""
vote details (2)
@plouto5 ·
So who would you say is Bill and the other Steve?
properties (22)
authorplouto5
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180109t022826058z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 02:28:27
last_update2018-01-09 02:28:27
depth3
children2
last_payout2018-01-16 02:28:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation88,705,729
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,142,190
net_rshares0
@retinart ·
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!
properties (22)
authorretinart
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180120t024110445z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-20 02:41:09
last_update2018-01-20 02:41:09
depth3
children0
last_payout2018-01-27 02:41:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation376,510,125,897
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,762,658
net_rshares0
@richard-921 ·
$2.24
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!
👍  , , , , , ,
properties (23)
authorrichard-921
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t233050331z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 23:30:51
last_update2018-01-08 23:30:51
depth3
children2
last_payout2018-01-15 23:30:51
cashout_time1969-12-31 23:59:59
total_payout_value1.692 HBD
curator_payout_value0.551 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation7,867,254,486,994
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,111,843
net_rshares208,182,646,528
author_curate_reward""
vote details (7)
@shares · (edited)
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
properties (22)
authorshares
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t164957844z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned","dan","shares"],"app":"steemit/0.1"}
created2018-01-08 16:49:51
last_update2018-01-08 16:51:54
depth3
children0
last_payout2018-01-15 16:49:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length276
author_reputation3,918,810,970,357
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,042,423
net_rshares0
@surfyogi ·
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
properties (22)
authorsurfyogi
permlinkre-ned-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180112t091509745z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 09:15:09
last_update2018-01-12 09:15:09
depth3
children0
last_payout2018-01-19 09:15:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,959,285
net_rshares0
@shuvo12dag ·
Right, EOS and cardano new two project.
properties (22)
authorshuvo12dag
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t040125346z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:01:27
last_update2018-01-07 04:01:27
depth2
children0
last_payout2018-01-14 04:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation4,458,723,860
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,674,961
net_rshares0
@slayer10 · (edited)
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
properties (22)
authorslayer10
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180110t001716159z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["cob","ned"],"app":"steemit/0.1"}
created2018-01-10 00:17:15
last_update2018-01-10 00:17:30
depth2
children0
last_payout2018-01-17 00:17:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length418
author_reputation3,379,610,484,322
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,367,703
net_rshares0
@some-dude ·
$1.55
wish my comment would worth 1k (I would even take $1)
👍  , , , , , , , ,
properties (23)
authorsome-dude
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015953933z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:59:57
last_update2018-01-07 01:59:57
depth2
children7
last_payout2018-01-14 01:59:57
cashout_time1969-12-31 23:59:59
total_payout_value1.204 HBD
curator_payout_value0.343 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation537,990,674,741
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,658,163
net_rshares158,339,114,517
author_curate_reward""
vote details (9)
@beanz ·
$0.02
dollar on its way
👍  , ,
properties (23)
authorbeanz
permlinkre-some-dude-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t121347486z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 12:13:48
last_update2018-01-07 12:13:48
depth3
children2
last_payout2018-01-14 12:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation77,215,574,122,930
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,747,609
net_rshares2,294,496,553
author_curate_reward""
vote details (3)
@jerrybanfield ·
Really it is worth about $4,000 USD with the SBD around $8 and $500 of the comment going to SBD.
👍  
properties (23)
authorjerrybanfield
permlinkre-some-dude-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180108t133113656z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 13:31:12
last_update2018-01-08 13:31:12
depth3
children3
last_payout2018-01-15 13:31:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation362,393,802,961,900
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,003,476
net_rshares628,036,638
author_curate_reward""
vote details (1)
@transisto ·
$260.06
Enjoy the payout ;)
👍  , , ,
👎  
properties (23)
authortransisto
permlinkre-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015847768z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:58:51
last_update2018-01-07 01:58:51
depth2
children1
last_payout2018-01-14 01:58:51
cashout_time1969-12-31 23:59:59
total_payout_value195.057 HBD
curator_payout_value65.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation330,357,940,720,833
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,658,019
net_rshares26,530,115,242,202
author_curate_reward""
vote details (5)
@transisto ·
$291.20
[Explanation for high upvote](https://steemit.com/steem/@transisto/temporarily-pausing-my-anti-abuse-efforts-while-sbd-is-off-the-chart)
👍  , , ,
properties (23)
authortransisto
permlinkre-transisto-re-cob-re-dan-peer-review-of-cardano-s-ouroboros-20180110t002025309z
categorycardamon
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"}
created2018-01-10 00:20:27
last_update2018-01-10 00:20:27
depth3
children0
last_payout2018-01-17 00:20:27
cashout_time1969-12-31 23:59:59
total_payout_value218.410 HBD
curator_payout_value72.788 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation330,357,940,720,833
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,368,225
net_rshares27,245,896,552,188
author_curate_reward""
vote details (4)
@condra ·
$0.05
Regarding EOS: "I'll check them out when they release something". 
Fuck this guy.
https://www.youtube.com/watch?v=-zftnG6BYu4
👍  
properties (23)
authorcondra
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t201309847z
categorycardamon
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"}
created2018-01-06 20:13:09
last_update2018-01-06 20:13:09
depth1
children0
last_payout2018-01-13 20:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation56,189,611,335,832
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,603,875
net_rshares5,246,452,685
author_curate_reward""
vote details (1)
@cosmosx ·
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.
properties (22)
authorcosmosx
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t233704257z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 23:36:54
last_update2018-01-09 23:36:54
depth1
children0
last_payout2018-01-16 23:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length304
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,361,369
net_rshares0
@craigmeister ·
@dan Time and effort well spent keep at it. thank your for the post
properties (22)
authorcraigmeister
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180110t145742736z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-10 14:58:39
last_update2018-01-10 14:58:39
depth1
children0
last_payout2018-01-17 14:58:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation53,432,967,988
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,517,327
net_rshares0
@craim100 ·
$3.38
Thank you Dan~~good information
👍  ,
properties (23)
authorcraim100
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t143158696z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 14:31:54
last_update2018-01-06 14:31:54
depth1
children0
last_payout2018-01-13 14:31:54
cashout_time1969-12-31 23:59:59
total_payout_value2.541 HBD
curator_payout_value0.840 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation5,925,979,116,525
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,536,876
net_rshares347,954,528,095
author_curate_reward""
vote details (2)
@craim100 ·
$1.92
A much needed post! Thank you.
👍  
properties (23)
authorcraim100
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t050524758z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 05:05:24
last_update2018-01-07 05:05:24
depth1
children0
last_payout2018-01-14 05:05:24
cashout_time1969-12-31 23:59:59
total_payout_value1.443 HBD
curator_payout_value0.481 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation5,925,979,116,525
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,684,100
net_rshares195,632,144,551
author_curate_reward""
vote details (1)
@cryptochindian ·
Well done. EOS really is a head above the rest. Makes you wonder what is all the hype over Cardano.
properties (22)
authorcryptochindian
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t070701746z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:07:03
last_update2018-01-06 07:07:03
depth1
children0
last_payout2018-01-13 07:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation2,126,266,961,088
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,462,692
net_rshares0
@cryptodoom · (edited)
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.
properties (22)
authorcryptodoom
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180219t180747692z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-02-19 18:07:54
last_update2018-02-19 18:09:06
depth1
children0
last_payout2018-02-26 18:07:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation198,016,990
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,850,384
net_rshares0
@cryptogirll ·
I'm heavily invested so I had to clear the air about Ouroboros being Unfit for Decentralised Applications with Charles! 

![IMG_6267.PNG](https://steemitimages.com/DQmRHHadqppMYUzwU6m11CL5EWxfD6mBPuAeccnJA8DNApa/IMG_6267.PNG)
👍  
properties (23)
authorcryptogirll
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t193733712z
categorycardamon
json_metadata{"tags":["cardamon"],"image":["https://steemitimages.com/DQmRHHadqppMYUzwU6m11CL5EWxfD6mBPuAeccnJA8DNApa/IMG_6267.PNG"],"app":"steemit/0.1"}
created2018-01-08 19:37:36
last_update2018-01-08 19:37:36
depth1
children0
last_payout2018-01-15 19:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation196,100,815,925
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,072,515
net_rshares615,392,896
author_curate_reward""
vote details (1)
@d-stepnoy ·
ADA has a good project and team. When the market of Crypto currency is stabilized. Cardano will take its place on it
👍  
properties (23)
authord-stepnoy
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t131232490z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 13:07:18
last_update2018-01-08 13:07:18
depth1
children0
last_payout2018-01-15 13:07:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation195,956,283,468
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,998,576
net_rshares614,860,000
author_curate_reward""
vote details (1)
@dali.soh ·
$0.04
Technically, if EOS is superior compared to ADA then time will tell if there will eventually be mass adoption.
👍  
properties (23)
authordali.soh
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t094902331z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 09:49:03
last_update2018-01-06 09:49:03
depth1
children0
last_payout2018-01-13 09:49:03
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation631,538,961,852
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,486,840
net_rshares4,455,156,211
author_curate_reward""
vote details (1)
@daltono ·
$2.23
![image](https://img.esteem.ws/pcnlh1i02v.jpg)

https://steemit.com/meme/@daltono/eos-greater-than-cardano-here-is-why-201816t10515180z
👍  , , , , , , , , , ,
properties (23)
authordaltono
permlinkre-dan-201816t111325616z
categorycardamon
json_metadata{"tags":"cardamon","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2018-01-06 16:13:30
last_update2018-01-06 16:13:30
depth1
children3
last_payout2018-01-13 16:13:30
cashout_time1969-12-31 23:59:59
total_payout_value1.716 HBD
curator_payout_value0.511 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation1,792,030,495,152,214
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,558,040
net_rshares238,961,077,951
author_curate_reward""
vote details (11)
@fproductions ·
$3.11
hahahahah.
👍  
properties (23)
authorfproductions
permlinkre-daltono-re-dan-201816t111325616z-20180107t153447867z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 15:34:51
last_update2018-01-07 15:34:51
depth2
children0
last_payout2018-01-14 15:34:51
cashout_time1969-12-31 23:59:59
total_payout_value2.333 HBD
curator_payout_value0.774 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation42,945,048,272,112
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,785,971
net_rshares306,456,880,548
author_curate_reward""
vote details (1)
@nasrull ·
Follow me for follback
👎  ,
properties (23)
authornasrull
permlinkre-daltono-re-dan-201816t111325616z-20180106t184234061z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 18:42:33
last_update2018-01-06 18:42:33
depth2
children0
last_payout2018-01-13 18:42:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation7,787,611,289
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,586,645
net_rshares-25,167,914,563
author_curate_reward""
vote details (2)
@surfyogi ·
U dick!
properties (22)
authorsurfyogi
permlinkre-daltono-re-dan-201816t111325616z-20180112t093549836z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 09:35:48
last_update2018-01-12 09:35:48
depth2
children0
last_payout2018-01-19 09:35:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,962,827
net_rshares0
@dan ·
$138.90
My response to Charles. 

https://steemit.com/cardano/@dan/asking-the-right-question
👍  , , , , , , , , , , , , , , , , , , , ,
properties (23)
authordan
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t013321891z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://steemit.com/cardano/@dan/asking-the-right-question"],"app":"steemit/0.1"}
created2018-01-07 01:33:21
last_update2018-01-07 01:33:21
depth1
children0
last_payout2018-01-14 01:33:21
cashout_time1969-12-31 23:59:59
total_payout_value104.209 HBD
curator_payout_value34.691 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation155,470,101,136,708
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,654,589
net_rshares14,213,976,588,802
author_curate_reward""
vote details (21)
@dandida ·
whoa is this dan larimer? will you share this with charles so they have the opportunity to address and fix these matters?
properties (22)
authordandida
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t080715804z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 08:07:15
last_update2018-01-06 08:07:15
depth1
children0
last_payout2018-01-13 08:07:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation10,492,740,853,640
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,471,445
net_rshares0
@darksea ·
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
properties (22)
authordarksea
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180110t000419369z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-10 00:04:27
last_update2018-01-10 00:04:27
depth1
children0
last_payout2018-01-17 00:04:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length408
author_reputation2,584,855,389,933
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,365,674
net_rshares0
@davidconstantine · (edited)
$2.67
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 :(
![](https://steemitimages.com/DQmbXZvnLJ9pxB648wjU1NyyyF2tbDqqk51aEZ4UzGhivAx/image.png)
👍  ,
properties (23)
authordavidconstantine
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t105825854z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1","image":["https://steemitimages.com/DQmbXZvnLJ9pxB648wjU1NyyyF2tbDqqk51aEZ4UzGhivAx/image.png"]}
created2018-01-08 10:56:33
last_update2018-01-08 10:57:21
depth1
children0
last_payout2018-01-15 10:56:33
cashout_time1969-12-31 23:59:59
total_payout_value2.378 HBD
curator_payout_value0.295 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length270
author_reputation1,789,023,643,502
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,974,638
net_rshares245,451,028,120
author_curate_reward""
vote details (2)
@davordm ·
good article i just can say that i like beginner wanted to buy cardano but i gave up because it was very complicated
properties (22)
authordavordm
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180115t091855733z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-15 09:19:00
last_update2018-01-15 09:19:00
depth1
children0
last_payout2018-01-22 09:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation293,169,590,484
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,659,545
net_rshares0
@dhouse ·
$0.04
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.
👍  
properties (23)
authordhouse
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t234116352z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 23:41:15
last_update2018-01-09 23:41:15
depth1
children2
last_payout2018-01-16 23:41:15
cashout_time1969-12-31 23:59:59
total_payout_value0.039 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length200
author_reputation4,150,202,158,075
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,362,046
net_rshares4,185,556,991
author_curate_reward""
vote details (1)
@brixx ·
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.
properties (22)
authorbrixx
permlinkre-dhouse-re-dan-peer-review-of-cardano-s-ouroboros-20180111t072849435z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-11 07:28:48
last_update2018-01-11 07:28:48
depth2
children1
last_payout2018-01-18 07:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation5,383,739,840
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,689,137
net_rshares0
@dhouse ·
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.
properties (22)
authordhouse
permlinkre-brixx-re-dhouse-re-dan-peer-review-of-cardano-s-ouroboros-20180111t155025558z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-11 15:50:18
last_update2018-01-11 15:50:18
depth3
children0
last_payout2018-01-18 15:50:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length847
author_reputation4,150,202,158,075
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,786,137
net_rshares0
@donkeypunch9 ·
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
👍  
properties (23)
authordonkeypunch9
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t023001972z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 02:30:00
last_update2018-01-08 02:30:00
depth1
children0
last_payout2018-01-15 02:30:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length446
author_reputation2,392,471,352
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,894,976
net_rshares1,160,485,730
author_curate_reward""
vote details (1)
@drakos ·
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.
properties (22)
authordrakos
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t055504802z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-09 05:55:57
last_update2018-01-09 05:55:57
depth1
children0
last_payout2018-01-16 05:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length188
author_reputation112,280,226,665,329
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,176,401
net_rshares0
@drop-bear-beryl ·
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.
properties (22)
authordrop-bear-beryl
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180110t061329728z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-10 06:13:33
last_update2018-01-10 06:13:33
depth1
children0
last_payout2018-01-17 06:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation219,931,714
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,422,949
net_rshares0
@eliasleo ·
Dear dan 
This comment has nothing to do with this article, I just wanted to let you know that you are absolutely awesome.
properties (22)
authoreliasleo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t044846580z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:48:45
last_update2018-01-07 04:48:45
depth1
children0
last_payout2018-01-14 04:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation150,651,817,445
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,681,714
net_rshares0
@eliasleo ·
Dan is the Mo%*er Fuc&çing boss you all better bow
properties (22)
authoreliasleo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t093511758z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 09:35:12
last_update2018-01-08 09:35:12
depth1
children0
last_payout2018-01-15 09:35:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation150,651,817,445
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,960,247
net_rshares0
@eosgo ·
We enjoy watching Dan go after Cardano, marketing can only take a blockchain so far. Go EOS!
👍  ,
properties (23)
authoreosgo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t060200779z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:02:00
last_update2018-01-06 06:02:00
depth1
children0
last_payout2018-01-13 06:02:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation19,975,856,950,324
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,453,208
net_rshares709,449,000
author_curate_reward""
vote details (2)
@erikvantools ·
Really great work Great stuff but there  it's about ADA Right ? @dan
properties (22)
authorerikvantools
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t155006683z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 15:50:06
last_update2018-01-06 15:50:06
depth1
children0
last_payout2018-01-13 15:50:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation761,260,879,328
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,552,934
net_rshares0
@fahedawan ·
Thanks for the share. Special thanks for clearing the difference between Steem and Ouroboros.
properties (22)
authorfahedawan
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t192539419z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 19:25:39
last_update2018-01-09 19:25:39
depth1
children0
last_payout2018-01-16 19:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation7,341,724,772
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,322,119
net_rshares0
@farah-kamran ·
https://steemit.com/@farah-kamran
properties (22)
authorfarah-kamran
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t082325551z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://steemit.com/@farah-kamran"],"app":"steemit/0.1"}
created2018-01-09 08:24:00
last_update2018-01-09 08:24:00
depth1
children0
last_payout2018-01-16 08:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation175,703,680,965
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,199,159
net_rshares0
@farah-kamran ·
https://steemit.com/bitcoin/@farah-kamran/bitshares-news
properties (22)
authorfarah-kamran
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180112t065603140z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://steemit.com/bitcoin/@farah-kamran/bitshares-news"],"app":"steemit/0.1"}
created2018-01-12 06:56:45
last_update2018-01-12 06:56:45
depth1
children0
last_payout2018-01-19 06:56:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation175,703,680,965
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,937,409
net_rshares0
@foovler ·
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?
properties (22)
authorfoovler
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t231925029z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 23:18:57
last_update2018-01-06 23:18:57
depth1
children0
last_payout2018-01-13 23:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length241
author_reputation17,885,206,395,471
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,633,782
net_rshares0
@fproductions ·
$3.25
Very interesting post.
👍  
properties (23)
authorfproductions
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t153337963z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 15:33:42
last_update2018-01-07 15:33:42
depth1
children0
last_payout2018-01-14 15:33:42
cashout_time1969-12-31 23:59:59
total_payout_value2.436 HBD
curator_payout_value0.812 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation42,945,048,272,112
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,785,731
net_rshares320,386,738,755
author_curate_reward""
vote details (1)
@frankbacon ·
$0.10
Highly rEsteemed!
👍  ,
properties (23)
authorfrankbacon
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t061648316z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:16:48
last_update2018-01-06 06:16:48
depth1
children0
last_payout2018-01-13 06:16:48
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation36,630,927,301,955
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,455,333
net_rshares10,952,130,312
author_curate_reward""
vote details (2)
@freedoms ·
$0.14
@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.
👍  , ,
properties (23)
authorfreedoms
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t071616819z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 07:16:18
last_update2018-01-06 07:16:18
depth1
children5
last_payout2018-01-13 07:16:18
cashout_time1969-12-31 23:59:59
total_payout_value0.124 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation25,461,225,849
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,464,017
net_rshares14,635,926,928
author_curate_reward""
vote details (3)
@dan ·
$2.55
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.
👍  , , , , , , , , , , ,
properties (23)
authordan
permlinkre-freedoms-re-dan-peer-review-of-cardano-s-ouroboros-20180106t144128362z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 14:41:27
last_update2018-01-06 14:41:27
depth2
children4
last_payout2018-01-13 14:41:27
cashout_time1969-12-31 23:59:59
total_payout_value1.940 HBD
curator_payout_value0.615 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length449
author_reputation155,470,101,136,708
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,538,905
net_rshares263,253,896,396
author_curate_reward""
vote details (12)
@daltono ·
$0.26
@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 👽
👍  , , ,
properties (23)
authordaltono
permlinkre-dan-201816t10552660z
categorycardamon
json_metadata{"tags":"cardamon","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2018-01-06 15:05:57
last_update2018-01-06 15:05:57
depth3
children1
last_payout2018-01-13 15:05:57
cashout_time1969-12-31 23:59:59
total_payout_value0.198 HBD
curator_payout_value0.062 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length293
author_reputation1,792,030,495,152,214
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,543,697
net_rshares28,132,714,355
author_curate_reward""
vote details (4)
@freedoms ·
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
properties (22)
authorfreedoms
permlinkre-dan-re-freedoms-re-dan-peer-review-of-cardano-s-ouroboros-20180107t130604122z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 13:06:06
last_update2018-01-07 13:06:06
depth3
children0
last_payout2018-01-14 13:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,017
author_reputation25,461,225,849
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,756,852
net_rshares0
@lukestokes ·
Thank you for this clarification.
properties (22)
authorlukestokes
permlinkre-dan-re-freedoms-re-dan-peer-review-of-cardano-s-ouroboros-20180106t222315951z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 22:23:15
last_update2018-01-06 22:23:15
depth3
children0
last_payout2018-01-13 22:23:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation556,640,380,599,219
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,625,960
net_rshares0
@gameboy9309 ·
And to think they declined the payout...
properties (22)
authorgameboy9309
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t065524955z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 06:55:24
last_update2018-01-08 06:55:24
depth1
children0
last_payout2018-01-15 06:55:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation17,497,929
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,935,525
net_rshares0
@gchan129 ·
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?
properties (22)
authorgchan129
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t171221198z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 17:12:21
last_update2018-01-07 17:12:21
depth1
children0
last_payout2018-01-14 17:12:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation455,990,084,946
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,802,328
net_rshares0
@gchan129 · (edited)
I gotta quote Conor McGregor here.
"Winners focus on winning. Losers focus on winners."
properties (22)
authorgchan129
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t173608552z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 17:36:09
last_update2018-01-07 17:36:45
depth1
children0
last_payout2018-01-14 17:36:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation455,990,084,946
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,807,011
net_rshares0
@geekmedia ·
$1.17
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!
👍  , , ,
properties (23)
authorgeekmedia
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180112t015845382z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 01:58:48
last_update2018-01-12 01:58:48
depth1
children2
last_payout2018-01-19 01:58:48
cashout_time1969-12-31 23:59:59
total_payout_value0.896 HBD
curator_payout_value0.270 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length593
author_reputation2,722,979,954
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,892,031
net_rshares149,434,791,783
author_curate_reward""
vote details (4)
@scheenbeen ·
True. He probably makes some points, but it's still a conflict of interest.
properties (22)
authorscheenbeen
permlinkre-geekmedia-re-dan-peer-review-of-cardano-s-ouroboros-20180221t092158102z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-02-21 09:21:54
last_update2018-02-21 09:21:54
depth2
children0
last_payout2018-02-28 09:21:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation185,948,927
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,299,923
net_rshares0
@surfyogi ·
Reasonable point.
properties (22)
authorsurfyogi
permlinkre-geekmedia-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094329415z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 09:43:30
last_update2018-01-12 09:43:30
depth2
children0
last_payout2018-01-19 09:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,964,169
net_rshares0
@gh0stfunk ·
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!
properties (22)
authorgh0stfunk
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t210021940z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 21:00:18
last_update2018-01-06 21:00:18
depth1
children0
last_payout2018-01-13 21:00:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation2,135,078,103
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,612,267
net_rshares0
@helleagy ·
Very interesting article!
👍  
properties (23)
authorhelleagy
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t203700038z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 20:37:00
last_update2018-01-07 20:37:00
depth1
children0
last_payout2018-01-14 20:37:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation57,458,729
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,839,093
net_rshares707,900,598
author_curate_reward""
vote details (1)
@hms818 ·
$2.27
EOS is far superior than any of the proposed platforms... Looking forward for EOS wallet launch!
👍  , , , , , , , , , , , , ,
properties (23)
authorhms818
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t064710493z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:47:12
last_update2018-01-06 06:47:12
depth1
children7
last_payout2018-01-13 06:47:12
cashout_time1969-12-31 23:59:59
total_payout_value1.982 HBD
curator_payout_value0.287 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation11,503,740,391,093
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,459,726
net_rshares234,258,305,586
author_curate_reward""
vote details (14)
@fproductions ·
$3.17
I also think so.
👍  
properties (23)
authorfproductions
permlinkre-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180107t153413036z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 15:34:15
last_update2018-01-07 15:34:15
depth2
children0
last_payout2018-01-14 15:34:15
cashout_time1969-12-31 23:59:59
total_payout_value2.376 HBD
curator_payout_value0.790 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation42,945,048,272,112
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,785,850
net_rshares312,426,819,779
author_curate_reward""
vote details (1)
@markzuckerbergs ·
$0.06
Me too.
👍  
properties (23)
authormarkzuckerbergs
permlinkre-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180106t075230518z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:52:33
last_update2018-01-06 07:52:33
depth2
children5
last_payout2018-01-13 07:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation3,365,667,565,848
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,469,279
net_rshares6,067,577,391
author_curate_reward""
vote details (1)
@hms818 · (edited)
$0.61
Happy to see @markzuckerbegs quitting facebook, supporting Steem and cryto-currencies! LOL
👍  , ,
properties (23)
authorhms818
permlinkre-markzuckerbergs-re-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180106t075637546z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["markzuckerbegs"],"app":"steemit/0.1"}
created2018-01-06 07:56:36
last_update2018-01-06 08:43:51
depth3
children3
last_payout2018-01-13 07:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.474 HBD
curator_payout_value0.140 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation11,503,740,391,093
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,469,839
net_rshares63,393,790,104
author_curate_reward""
vote details (3)
@tiger.woods ·
Agreed my friend!
properties (22)
authortiger.woods
permlinkre-markzuckerbergs-re-hms818-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015309778z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:53:09
last_update2018-01-07 01:53:09
depth3
children0
last_payout2018-01-14 01:53:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,657,278
net_rshares0
@holoz0r ·
$0.07
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.
👍  ,
properties (23)
authorholoz0r
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t091427989z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 09:14:27
last_update2018-01-06 09:14:27
depth1
children0
last_payout2018-01-13 09:14:27
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length273
author_reputation565,570,184,076,379
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,481,603
net_rshares7,256,739,867
author_curate_reward""
vote details (2)
@howi ·
competition makes for better products. time will tell which platform is superior, maybe both? go eos ! ;)
properties (22)
authorhowi
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t061944503z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 06:19:45
last_update2018-01-09 06:19:45
depth1
children0
last_payout2018-01-16 06:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,180,371
net_rshares0
@hr1 ·
$0.66
I love the tag @Dan chose :)
👍  , , , ,
properties (23)
authorhr1
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t105716763z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 10:57:18
last_update2018-01-06 10:57:18
depth1
children0
last_payout2018-01-13 10:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.505 HBD
curator_payout_value0.151 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation7,226,856,136,834
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,497,886
net_rshares67,737,708,981
author_curate_reward""
vote details (5)
@hwankyun ·
Interesting..!!
properties (22)
authorhwankyun
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t002929702z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 00:29:21
last_update2018-01-08 00:29:21
depth1
children0
last_payout2018-01-15 00:29:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation2,510,266,988
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,875,899
net_rshares0
@idma ·
very good your post
properties (22)
authoridma
permlinkre-dan-201816t153152510z
categorycardamon
json_metadata{"tags":"cardamon","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2018-01-06 19:32:00
last_update2018-01-06 19:32:00
depth1
children0
last_payout2018-01-13 19:32:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation20,733,001,304
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,596,309
net_rshares0
@indiancrypto ·
thanks for sharing your post , I am going to start following you I hope you will get back follow me ........
properties (22)
authorindiancrypto
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t172443114z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 17:24:42
last_update2018-01-08 17:24:42
depth1
children0
last_payout2018-01-15 17:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation12,098,600,378
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,048,992
net_rshares0
@introvertspeaks ·
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
properties (22)
authorintrovertspeaks
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t032539959z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:25:39
last_update2018-01-07 03:25:39
depth1
children0
last_payout2018-01-14 03:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation-4,351,658,764,138
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,670,004
net_rshares0
@jaichai · (edited)
$3.74
@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.
👍  , ,
properties (23)
authorjaichai
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180119t142647097z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-19 14:26:57
last_update2018-01-19 14:52:00
depth1
children0
last_payout2018-01-26 14:26:57
cashout_time1969-12-31 23:59:59
total_payout_value2.812 HBD
curator_payout_value0.930 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length405
author_reputation-5,759,614,035,864
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,637,390
net_rshares361,666,638,885
author_curate_reward""
vote details (3)
@jhdalitaj ·
Great sir, Is it  to invest
properties (22)
authorjhdalitaj
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t180448326z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 18:04:48
last_update2018-01-06 18:04:48
depth1
children0
last_payout2018-01-13 18:04:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation7,101,069,115
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,579,582
net_rshares0
@jimbo4350 ·
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.
👍  
properties (23)
authorjimbo4350
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t170144642z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 17:01:45
last_update2018-01-06 17:01:45
depth1
children2
last_payout2018-01-13 17:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation19,691,214
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,567,536
net_rshares617,220,000
author_curate_reward""
vote details (1)
@paullintilhac ·
in what way?
properties (22)
authorpaullintilhac
permlinkre-jimbo4350-re-dan-peer-review-of-cardano-s-ouroboros-20180106t182717477z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 18:27:15
last_update2018-01-06 18:27:15
depth2
children0
last_payout2018-01-13 18:27:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation38,849,021,305
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,583,854
net_rshares0
@transcendence ·
Can you be a bit more specific?
properties (22)
authortranscendence
permlinkre-jimbo4350-re-dan-peer-review-of-cardano-s-ouroboros-20180106t181627494z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 18:16:27
last_update2018-01-06 18:16:27
depth2
children0
last_payout2018-01-13 18:16:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation345,732,151
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,581,926
net_rshares0
@jinhoo ·
nice~
properties (22)
authorjinhoo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t231848019z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 23:18:57
last_update2018-01-08 23:18:57
depth1
children0
last_payout2018-01-15 23:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation421,950,284
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,109,768
net_rshares0
@jinhoo ·
nice~
properties (22)
authorjinhoo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t231925301z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 23:19:33
last_update2018-01-08 23:19:33
depth1
children0
last_payout2018-01-15 23:19:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation421,950,284
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,109,875
net_rshares0
@joe007 ·
Thank you for the information
properties (22)
authorjoe007
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t074744006z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 07:47:45
last_update2018-01-08 07:47:45
depth1
children0
last_payout2018-01-15 07:47:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation1,177,391,771,969
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,943,411
net_rshares0
@johnchamberlain ·
>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.
properties (22)
authorjohnchamberlain
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t110925176z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 11:09:30
last_update2018-01-06 11:09:30
depth1
children0
last_payout2018-01-13 11:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length355
author_reputation368,051,311,646
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,499,954
net_rshares0
@johnsmith ·
$2.07
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.
👍  , , , ,
properties (23)
authorjohnsmith
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t001044530z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 00:10:45
last_update2018-01-07 00:10:45
depth1
children3
last_payout2018-01-14 00:10:45
cashout_time1969-12-31 23:59:59
total_payout_value1.820 HBD
curator_payout_value0.252 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length201
author_reputation22,729,726,767,685
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,642,208
net_rshares213,325,220,522
author_curate_reward""
vote details (5)
@whyknot · (edited)
$1.71
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.
👍  
properties (23)
authorwhyknot
permlinkre-johnsmith-re-dan-peer-review-of-cardano-s-ouroboros-20180108t141556262z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 14:15:57
last_update2018-01-08 14:16:12
depth2
children2
last_payout2018-01-15 14:15:57
cashout_time1969-12-31 23:59:59
total_payout_value1.286 HBD
curator_payout_value0.423 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation112,320,686,869
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,012,835
net_rshares157,513,424,007
author_curate_reward""
vote details (1)
@wimphel ·
$1.69
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
👍  
properties (23)
authorwimphel
permlinkre-whyknot-re-johnsmith-re-dan-peer-review-of-cardano-s-ouroboros-20180110t062019915z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-10 06:20:21
last_update2018-01-10 06:20:21
depth3
children1
last_payout2018-01-17 06:20:21
cashout_time1969-12-31 23:59:59
total_payout_value1.272 HBD
curator_payout_value0.420 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation2,490,101,923
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,423,985
net_rshares159,366,523,113
author_curate_reward""
vote details (1)
@jonbee ·
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
properties (22)
authorjonbee
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t143243330z
categorycardamon
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"}
created2018-01-07 14:33:39
last_update2018-01-07 14:33:39
depth1
children0
last_payout2018-01-14 14:33:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation-455,593,770,537
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,773,936
net_rshares0
@jonbee ·
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
properties (22)
authorjonbee
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t143721614z
categorycardamon
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"}
created2018-01-07 14:39:21
last_update2018-01-07 14:39:21
depth1
children0
last_payout2018-01-14 14:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation-455,593,770,537
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,775,131
net_rshares0
@juancavillac ·
As always very successful publication. Innumerable forms of production today, unimaginable years ago
👍  
properties (23)
authorjuancavillac
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t215638105z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 21:56:36
last_update2018-01-06 21:56:36
depth1
children0
last_payout2018-01-13 21:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation1,560,477,142
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,621,561
net_rshares400,370,046
author_curate_reward""
vote details (1)
@judetheobscure ·
$3.91
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.
👍  
properties (23)
authorjudetheobscure
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t172716276z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 17:27:15
last_update2018-01-07 17:27:15
depth1
children0
last_payout2018-01-14 17:27:15
cashout_time1969-12-31 23:59:59
total_payout_value2.933 HBD
curator_payout_value0.977 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length377
author_reputation9,888,142,763
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,805,253
net_rshares382,929,338,546
author_curate_reward""
vote details (1)
@katteasis ·
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.
👍  ,
properties (23)
authorkatteasis
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t060832043z
categorycardamon
json_metadata{"tags":["cardamon"],"community":"busy","app":"busy/2.2.0"}
created2018-01-06 06:08:36
last_update2018-01-06 06:08:36
depth1
children2
last_payout2018-01-13 06:08:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length248
author_reputation22,664,890,626,849
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,454,173
net_rshares787,159,946
author_curate_reward""
vote details (2)
@richardcrill ·
I was doing that about a year ago and my mind was continually blown by how far ahead he is.
properties (22)
authorrichardcrill
permlinkre-katteasis-re-dan-peer-review-of-cardano-s-ouroboros-20180106t081027708z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 08:10:27
last_update2018-01-06 08:10:27
depth2
children1
last_payout2018-01-13 08:10:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation55,974,657,421,087
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,471,904
net_rshares0
@katteasis ·
I was so late :(
properties (22)
authorkatteasis
permlinkre-richardcrill-re-katteasis-re-dan-peer-review-of-cardano-s-ouroboros-20180106t120119561z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 12:01:24
last_update2018-01-06 12:01:24
depth3
children0
last_payout2018-01-13 12:01:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation22,664,890,626,849
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,508,655
net_rshares0
@lariat · (edited)
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
properties (22)
authorlariat
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t151517155z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["http://raidreviews.org"],"app":"steemit/0.1"}
created2018-01-08 15:15:18
last_update2018-01-08 15:18:15
depth1
children0
last_payout2018-01-15 15:15:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length358
author_reputation403,326,076,381
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,025,000
net_rshares0
@lasseehlers ·
$2.77
"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
👍  , ,
properties (23)
authorlasseehlers
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t114155149z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-08 11:41:54
last_update2018-01-08 11:41:54
depth1
children1
last_payout2018-01-15 11:41:54
cashout_time1969-12-31 23:59:59
total_payout_value2.093 HBD
curator_payout_value0.678 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length768
author_reputation-19,519,944,625,907
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,982,663
net_rshares254,507,034,167
author_curate_reward""
vote details (3)
@surfyogi ·
$0.03
Thanks good to know
👍  
properties (23)
authorsurfyogi
permlinkre-lasseehlers-re-dan-peer-review-of-cardano-s-ouroboros-20180112t093355084z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 09:33:54
last_update2018-01-12 09:33:54
depth2
children0
last_payout2018-01-19 09:33:54
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,962,483
net_rshares3,851,277,957
author_curate_reward""
vote details (1)
@lifeofahero ·
Thoughts on ICON's comparison chart Dan? ![Screen Shot 2018-01-18 at 4.55.12 PM.png](https://steemitimages.com/DQmUFGWk5kbAeuGKH9C4ADHqTF8SANNcFgjRwR57biwtMPK/Screen%20Shot%202018-01-18%20at%204.55.12%20PM.png)
properties (22)
authorlifeofahero
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180119t005943661z
categorycardamon
json_metadata{"tags":["cardamon"],"image":["https://steemitimages.com/DQmUFGWk5kbAeuGKH9C4ADHqTF8SANNcFgjRwR57biwtMPK/Screen%20Shot%202018-01-18%20at%204.55.12%20PM.png"],"app":"steemit/0.1"}
created2018-01-19 00:59:45
last_update2018-01-19 00:59:45
depth1
children0
last_payout2018-01-26 00:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id30,512,688
net_rshares0
@littlelobo ·
You stopped my ADA FOMO! - THANK YOU!!!!
properties (22)
authorlittlelobo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t000409778z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 00:04:09
last_update2018-01-07 00:04:09
depth1
children1
last_payout2018-01-14 00:04:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,641,221
net_rshares0
@cryptodoom ·
it will start again soon. ADA is the ultimate solution for crypto.
properties (22)
authorcryptodoom
permlinkre-littlelobo-re-dan-peer-review-of-cardano-s-ouroboros-20180219t181039526z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-02-19 18:10:45
last_update2018-02-19 18:10:45
depth2
children0
last_payout2018-02-26 18:10:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation198,016,990
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,850,951
net_rshares0
@lovejoy ·
$4.22
> 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.
👍  , ,
properties (23)
authorlovejoy
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t162845766z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 16:28:45
last_update2018-01-06 16:28:45
depth1
children0
last_payout2018-01-13 16:28:45
cashout_time1969-12-31 23:59:59
total_payout_value3.167 HBD
curator_payout_value1.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length487
author_reputation53,556,731,007,030
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,560,976
net_rshares434,277,774,538
author_curate_reward""
vote details (3)
@lukestokes · (edited)
$28.64
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.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorlukestokes
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t064638998z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:46:39
last_update2018-01-06 06:47:15
depth1
children43
last_payout2018-01-13 06:46:39
cashout_time1969-12-31 23:59:59
total_payout_value21.559 HBD
curator_payout_value7.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,258
author_reputation556,640,380,599,219
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,459,656
net_rshares2,952,048,758,534
author_curate_reward""
vote details (36)
@ashe-oro ·
$1.70
great questions, Luke. I hope @dan can clear some of this up for us.
👍  , ,
properties (23)
authorashe-oro
permlinkre-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t102045425z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 10:22:15
last_update2018-01-06 10:22:15
depth2
children1
last_payout2018-01-13 10:22:15
cashout_time1969-12-31 23:59:59
total_payout_value1.288 HBD
curator_payout_value0.412 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation24,151,212,829,722
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,492,078
net_rshares175,054,118,637
author_curate_reward""
vote details (3)
@lukestokes ·
$0.29
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. :)
👍  
properties (23)
authorlukestokes
permlinkre-ashe-oro-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180107t015837165z
categorycardamon
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"}
created2018-01-07 01:58:36
last_update2018-01-07 01:58:36
depth3
children0
last_payout2018-01-14 01:58:36
cashout_time1969-12-31 23:59:59
total_payout_value0.290 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length382
author_reputation556,640,380,599,219
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,657,990
net_rshares29,946,595,157
author_curate_reward""
vote details (1)
@benjojo ·
$1.22
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?
👍  
properties (23)
authorbenjojo
permlinkre-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t215107954z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 21:51:06
last_update2018-01-06 21:51:06
depth2
children2
last_payout2018-01-13 21:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.919 HBD
curator_payout_value0.305 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length670
author_reputation120,749,050,383,122
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,620,700
net_rshares126,187,597,198
author_curate_reward""
vote details (1)
@beanz ·
$0.48
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.
👍  ,
properties (23)
authorbeanz
permlinkre-benjojo-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180107t122048699z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 12:20:48
last_update2018-01-07 12:20:48
depth3
children0
last_payout2018-01-14 12:20:48
cashout_time1969-12-31 23:59:59
total_payout_value0.364 HBD
curator_payout_value0.112 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length471
author_reputation77,215,574,122,930
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,748,742
net_rshares47,662,576,206
author_curate_reward""
vote details (2)
@lukestokes ·
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.
properties (22)
authorlukestokes
permlinkre-benjojo-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t231125046z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 23:11:24
last_update2018-01-06 23:11:24
depth3
children0
last_payout2018-01-13 23:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length658
author_reputation556,640,380,599,219
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,632,665
net_rshares0
@good-news ·
$0.31
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.
👍  , ,
properties (23)
authorgood-news
permlinkre-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t110646553z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 11:06:48
last_update2018-01-06 11:06:48
depth2
children0
last_payout2018-01-13 11:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.240 HBD
curator_payout_value0.073 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation539,573,157
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,499,505
net_rshares32,573,178,677
author_curate_reward""
vote details (3)
@jankasparec ·
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!
properties (22)
authorjankasparec
permlinkre-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180116t050359092z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["lukestokes"],"app":"steemit/0.1"}
created2018-01-16 05:04:00
last_update2018-01-16 05:04:00
depth2
children0
last_payout2018-01-23 05:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation68,292,610,382,616
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,861,983
net_rshares0
@safetony ·
$0.04
I like the project but can't invest because there is no wallet for linux which is a bit of a red flag
👍  , ,
properties (23)
authorsafetony
permlinkre-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t121438095z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 12:14:39
last_update2018-01-06 12:14:39
depth2
children7
last_payout2018-01-13 12:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation1,616,237,967,768
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,510,930
net_rshares4,232,390,371
author_curate_reward""
vote details (3)
@ashe-oro ·
$0.77
it's an ERC20 token at the moment.
👍  ,
properties (23)
authorashe-oro
permlinkre-safetony-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t130424041z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 13:05:54
last_update2018-01-06 13:05:54
depth3
children3
last_payout2018-01-13 13:05:54
cashout_time1969-12-31 23:59:59
total_payout_value0.579 HBD
curator_payout_value0.193 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation24,151,212,829,722
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,519,962
net_rshares79,846,804,457
author_curate_reward""
vote details (2)
@h4ck3rm1k3st33m ·
I have the wallet running on linux https://github.com/h4ck3rm1k3/cardano-sl
👍  ,
properties (23)
authorh4ck3rm1k3st33m
permlinkre-safetony-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t144004485z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://github.com/h4ck3rm1k3/cardano-sl"],"app":"steemit/0.1"}
created2018-01-06 14:40:03
last_update2018-01-06 14:40:03
depth3
children2
last_payout2018-01-13 14:40:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation3,025,934,704,561
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,538,610
net_rshares1,029,701,503
author_curate_reward""
vote details (2)
@sim31 ·
$2.32
@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.
👍  , , , ,
properties (23)
authorsim31
permlinkre-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t162627035z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["stan"],"app":"steemit/0.1"}
created2018-01-06 16:26:27
last_update2018-01-06 16:26:27
depth2
children27
last_payout2018-01-13 16:26:27
cashout_time1969-12-31 23:59:59
total_payout_value1.821 HBD
curator_payout_value0.495 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation57,169,944,979
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,560,510
net_rshares238,848,366,528
author_curate_reward""
vote details (5)
@adinofri1111 ·
@adinofri1111
follow to me!
👍  
properties (23)
authoradinofri1111
permlinkre-sim31-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180108t033851454z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["adinofri1111"],"app":"steemit/0.1"}
created2018-01-08 03:38:54
last_update2018-01-08 03:38:54
depth3
children0
last_payout2018-01-15 03:38:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation827,133,055
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,905,786
net_rshares1,143,080,135
author_curate_reward""
vote details (1)
@lukestokes ·
$4.94
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.
👍  , , , , , , , , , , ,
properties (23)
authorlukestokes
permlinkre-sim31-re-lukestokes-re-dan-peer-review-of-cardano-s-ouroboros-20180106t165054441z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned","dan"],"links":["http://docs.bitshares.org/bitshares/history.html"],"app":"steemit/0.1"}
created2018-01-06 16:50:54
last_update2018-01-06 16:50:54
depth3
children25
last_payout2018-01-13 16:50:54
cashout_time1969-12-31 23:59:59
total_payout_value3.793 HBD
curator_payout_value1.148 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length909
author_reputation556,640,380,599,219
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,565,419
net_rshares508,885,953,868
author_curate_reward""
vote details (12)
@marc99 ·
$3.71
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.
👍  , , , ,
properties (23)
authormarc99
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t155145854z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 15:51:45
last_update2018-01-06 15:51:45
depth1
children2
last_payout2018-01-13 15:51:45
cashout_time1969-12-31 23:59:59
total_payout_value3.652 HBD
curator_payout_value0.062 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation2,577,073,356,117
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,553,309
net_rshares382,563,243,150
author_curate_reward""
vote details (5)
@brixx · (edited)
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.
👍  
properties (23)
authorbrixx
permlinkre-marc99-re-dan-peer-review-of-cardano-s-ouroboros-20180111t071329540z
categorycardamon
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"]}
created2018-01-11 07:13:30
last_update2018-01-11 07:16:09
depth2
children0
last_payout2018-01-18 07:13:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length510
author_reputation5,383,739,840
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,686,560
net_rshares592,995,819
author_curate_reward""
vote details (1)
@introvertspeaks ·
Cardano's market success was driven primarily by brilliant marketing strategy, I suspect. I have both coin/token though.
properties (22)
authorintrovertspeaks
permlinkre-marc99-re-dan-peer-review-of-cardano-s-ouroboros-20180107t045143747z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:51:42
last_update2018-01-07 04:51:42
depth2
children0
last_payout2018-01-14 04:51:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length120
author_reputation-4,351,658,764,138
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,682,141
net_rshares0
@marketstack ·
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.
properties (22)
authormarketstack
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t185405393z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://cardanodocs.com/timeline/bootstrap/"],"app":"steemit/0.1"}
created2018-01-07 18:54:21
last_update2018-01-07 18:54:21
depth1
children0
last_payout2018-01-14 18:54:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length491
author_reputation13,383,777,748,100
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,821,249
net_rshares0
@markmemark ·
EOS will change the world, amen to that!
properties (22)
authormarkmemark
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t070911110z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:09:03
last_update2018-01-06 07:09:03
depth1
children0
last_payout2018-01-13 07:09:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation-26,415,646,170
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,462,990
net_rshares0
@markwhittam ·
>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
👍  
properties (23)
authormarkwhittam
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t202529050z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 20:25:30
last_update2018-01-06 20:25:30
depth1
children1
last_payout2018-01-13 20:25:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation47,076,564,282,337
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,606,039
net_rshares313,475,821
author_curate_reward""
vote details (1)
@introvertspeaks ·
And switch to Verge instead.
properties (22)
authorintrovertspeaks
permlinkre-markwhittam-re-dan-peer-review-of-cardano-s-ouroboros-20180107t032745054z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:27:45
last_update2018-01-07 03:27:45
depth2
children0
last_payout2018-01-14 03:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation-4,351,658,764,138
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,670,280
net_rshares0
@matthiasjohn ·
Thanks for this post!
properties (22)
authormatthiasjohn
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t083706028z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 08:43:18
last_update2018-01-08 08:43:18
depth1
children0
last_payout2018-01-15 08:43:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation834,004,459,441
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,951,818
net_rshares0
@max-infeld ·
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.
properties (22)
authormax-infeld
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t062434655z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:24:36
last_update2018-01-06 06:24:36
depth1
children0
last_payout2018-01-13 06:24:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length404
author_reputation2,039,194,374,573
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,456,518
net_rshares0
@mbilalihsan ·
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?
properties (22)
authormbilalihsan
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t213105689z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 21:31:09
last_update2018-01-07 21:31:09
depth1
children0
last_payout2018-01-14 21:31:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length289
author_reputation1,558,028,835
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,847,954
net_rshares0
@michaelmcawesome ·
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!
properties (22)
authormichaelmcawesome
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t162419649z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 16:24:18
last_update2018-01-06 16:24:18
depth1
children0
last_payout2018-01-13 16:24:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length629
author_reputation1,403,414,316,595
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,560,113
net_rshares0
@minecrew ·
Like it
properties (22)
authorminecrew
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t191745671z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 19:17:45
last_update2018-01-06 19:17:45
depth1
children0
last_payout2018-01-13 19:17:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation18,119,479,198
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,593,573
net_rshares0
@minjunpark ·
Very nice technical analysis. Good reading for people who are interested in technolgy behind ADA (or in crypto general)
👍  
properties (23)
authorminjunpark
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t005349055z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 00:53:48
last_update2018-01-07 00:53:48
depth1
children0
last_payout2018-01-14 00:53:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation668,425,897,741
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,648,997
net_rshares1,134,890,460
author_curate_reward""
vote details (1)
@msmith ·
"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.
properties (22)
authormsmith
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180205t101600912z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-02-05 10:16:00
last_update2018-02-05 10:16:00
depth1
children0
last_payout2018-02-12 10:16:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length203
author_reputation12,278,789,721
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,109,154
net_rshares0
@n3r0 · (edited)
$0.22
It is quite funny that this article is published in 'cardamon'... :D
👍  ,
properties (23)
authorn3r0
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t095927064z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 09:59:27
last_update2018-01-06 11:02:27
depth1
children3
last_payout2018-01-13 09:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.208 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation537,681,475,333
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,488,535
net_rshares23,059,265,170
author_curate_reward""
vote details (2)
@dan ·
$0.22
Safari auto correct got me.
👍  ,
properties (23)
authordan
permlinkre-n3r0-re-dan-peer-review-of-cardano-s-ouroboros-20180106t143256092z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 14:32:54
last_update2018-01-06 14:32:54
depth2
children2
last_payout2018-01-13 14:32:54
cashout_time1969-12-31 23:59:59
total_payout_value0.176 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation155,470,101,136,708
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,537,088
net_rshares23,059,826,502
author_curate_reward""
vote details (2)
@fortified ·
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
properties (22)
authorfortified
permlinkre-dan-re-n3r0-re-dan-peer-review-of-cardano-s-ouroboros-20180106t212317900z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["fortified"],"app":"steemit/0.1"}
created2018-01-06 21:23:18
last_update2018-01-06 21:23:18
depth3
children0
last_payout2018-01-13 21:23:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length382
author_reputation38,014,334,194,654
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,616,307
net_rshares0
@n3r0 ·
:D:D
properties (22)
authorn3r0
permlinkre-dan-re-n3r0-re-dan-peer-review-of-cardano-s-ouroboros-20180106t164000707z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 16:40:00
last_update2018-01-06 16:40:00
depth3
children0
last_payout2018-01-13 16:40:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation537,681,475,333
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,563,314
net_rshares0
@nasrullahilyas ·
Great posting
properties (22)
authornasrullahilyas
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t125355414z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 12:54:00
last_update2018-01-07 12:54:00
depth1
children0
last_payout2018-01-14 12:54:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation210,154,756,428
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,754,623
net_rshares0
@nazirkhyber ·
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 ....
properties (22)
authornazirkhyber
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t071807444z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 07:18:06
last_update2018-01-06 07:18:06
depth1
children0
last_payout2018-01-13 07:18:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation706,568,984,833
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,464,299
net_rshares0
@nicholas83 · (edited)
Wow. This is a lot to digest. This holder is inclined to say thanks.
properties (22)
authornicholas83
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t014737138z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:47:36
last_update2018-01-07 01:48:03
depth1
children0
last_payout2018-01-14 01:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation3,100,178,185,327
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,656,533
net_rshares0
@nuridin ·
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.
properties (22)
authornuridin
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t132420975z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 13:24:21
last_update2018-01-07 13:24:21
depth1
children0
last_payout2018-01-14 13:24:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length277
author_reputation755,093,792,969
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,760,276
net_rshares0
@onthewayout ·
$3.40
> 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?
👍  ,
properties (23)
authoronthewayout
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t062448809z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:24:48
last_update2018-01-06 06:24:48
depth1
children2
last_payout2018-01-13 06:24:48
cashout_time1969-12-31 23:59:59
total_payout_value2.556 HBD
curator_payout_value0.840 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length452
author_reputation13,205,527,560,619
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,456,551
net_rshares350,818,933,687
author_curate_reward""
vote details (2)
@jerzy · (edited)
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?
👍  
properties (23)
authorjerzy
permlinkre-onthewayout-re-dan-peer-review-of-cardano-s-ouroboros-20180106t120117543z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"links":["https://github.com/EOSIO/Documentation/blob/master/TechnicalWhitePaper.md"],"app":"steemit/0.1"}
created2018-01-06 12:01:18
last_update2018-01-06 12:09:36
depth2
children1
last_payout2018-01-13 12:01:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length761
author_reputation1,707,286,936
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,508,636
net_rshares571,819,800
author_curate_reward""
vote details (1)
@sim31 ·
$0.17
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)
👍  ,
properties (23)
authorsim31
permlinkre-jerzy-re-onthewayout-re-dan-peer-review-of-cardano-s-ouroboros-20180106t163030867z
categorycardamon
json_metadata{"tags":["cardamon"],"links":["https://steemit.com/eos/@eosio/eos-io-dawn-2-0-released-and-development-update"],"app":"steemit/0.1"}
created2018-01-06 16:30:30
last_update2018-01-06 16:30:30
depth3
children0
last_payout2018-01-13 16:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.129 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation57,169,944,979
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,561,344
net_rshares17,525,684,975
author_curate_reward""
vote details (2)
@pagandance ·
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.
👎  , , , , , , , , , , , ,
properties (23)
authorpagandance
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t091628359z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 09:16:27
last_update2018-01-07 09:16:27
depth1
children0
last_payout2018-01-14 09:16:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length256
author_reputation2,567,230,099,182
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,719,014
net_rshares-150,836,284,573
author_curate_reward""
vote details (13)
@pairmike ·
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.
properties (22)
authorpairmike
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180112t042540429z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 04:25:39
last_update2018-01-12 04:25:39
depth1
children0
last_payout2018-01-19 04:25:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation43,927,661,974,027
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,915,255
net_rshares0
@papotus ·
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.
properties (22)
authorpapotus
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t070352198z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:03:51
last_update2018-01-06 07:03:51
depth1
children0
last_payout2018-01-13 07:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length511
author_reputation2,588,242,645,947
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,462,231
net_rshares0
@paradise · (edited)
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 :)
👍  
properties (23)
authorparadise
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t182153543z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned","dan"],"app":"steemit/0.1"}
created2018-01-07 18:21:57
last_update2018-01-07 18:27:18
depth1
children0
last_payout2018-01-14 18:21:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation1,222,816,979,639
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,815,426
net_rshares438,224,817
author_curate_reward""
vote details (1)
@piach ·
$0.36
Great post!
👍  
properties (23)
authorpiach
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t181629922z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 18:16:30
last_update2018-01-08 18:16:30
depth1
children0
last_payout2018-01-15 18:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.358 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation2,882,012,906,064
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,058,569
net_rshares33,633,221,066
author_curate_reward""
vote details (1)
@pip010 ·
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
properties (22)
authorpip010
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t102613253z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 10:26:12
last_update2018-01-09 10:26:12
depth1
children0
last_payout2018-01-16 10:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,219,329
net_rshares0
@pokerman ·
All very interesting I’m learning so much
thank you so much
properties (22)
authorpokerman
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t063400631z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:34:00
last_update2018-01-06 06:34:00
depth1
children0
last_payout2018-01-13 06:34:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation119,760,358,941
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,457,833
net_rshares0
@pouchon ·
$2.79
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.
👍  ,
properties (23)
authorpouchon
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t040201911z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:02:00
last_update2018-01-07 04:02:00
depth1
children2
last_payout2018-01-14 04:02:00
cashout_time1969-12-31 23:59:59
total_payout_value2.099 HBD
curator_payout_value0.692 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation841,542,726,631,286
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,675,060
net_rshares284,017,630,452
author_curate_reward""
vote details (2)
@surfyogi ·
Consider:
What the community WANTS is what the community GETS.
This is P2P and we get to support what we WANT 2 B.
properties (22)
authorsurfyogi
permlinkre-pouchon-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094445130z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-12 09:44:45
last_update2018-01-12 09:44:45
depth2
children1
last_payout2018-01-19 09:44:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,964,396
net_rshares0
@darksea ·
absolutely I agree @surfyogi 2B supported and I support
properties (22)
authordarksea
permlinkre-surfyogi-re-pouchon-re-dan-peer-review-of-cardano-s-ouroboros-20180112t125930896z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["surfyogi"],"app":"steemit/0.1"}
created2018-01-12 12:59:39
last_update2018-01-12 12:59:39
depth3
children0
last_payout2018-01-19 12:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation2,584,855,389,933
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,998,142
net_rshares0
@rajashams ·
Dude Thats great
properties (22)
authorrajashams
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t124317208z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 12:43:15
last_update2018-01-06 12:43:15
depth1
children0
last_payout2018-01-13 12:43:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation-12,988,593,178
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,515,968
net_rshares0
@raphal ·
$0.05
he follow and upvote I follow and upvote back
👍  
properties (23)
authorraphal
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t030931112z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 03:09:33
last_update2018-01-08 03:09:33
depth1
children0
last_payout2018-01-15 03:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation36,535,115,107
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,901,283
net_rshares5,079,392,604
author_curate_reward""
vote details (1)
@raphal ·
$0.03
he follow and upvote I follow and upvote back
👍  
properties (23)
authorraphal
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t033103261z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 03:31:06
last_update2018-01-08 03:31:06
depth1
children0
last_payout2018-01-15 03:31:06
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation36,535,115,107
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,904,626
net_rshares3,269,494,090
author_curate_reward""
vote details (1)
@raybilson ·
$0.26
Interesting take inn Cardano not many people show this side of the project
👍  
properties (23)
authorraybilson
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t070625020z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 07:06:24
last_update2018-01-08 07:06:24
depth1
children0
last_payout2018-01-15 07:06:24
cashout_time1969-12-31 23:59:59
total_payout_value0.264 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length74
author_reputation2,265,563,811,277
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,937,156
net_rshares24,860,760,309
author_curate_reward""
vote details (1)
@revelationquotes ·
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.
properties (22)
authorrevelationquotes
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180112t151414571z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["revelationquotes"],"app":"steemit/0.1"}
created2018-01-12 15:14:15
last_update2018-01-12 15:14:15
depth1
children0
last_payout2018-01-19 15:14:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length386
author_reputation74,119,741,091,678
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id29,025,161
net_rshares0
@richardcrill ·
$2.18
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.
👍  , , , , , ,
properties (23)
authorrichardcrill
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t080640574z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 08:06:39
last_update2018-01-06 08:06:39
depth1
children1
last_payout2018-01-13 08:06:39
cashout_time1969-12-31 23:59:59
total_payout_value1.643 HBD
curator_payout_value0.532 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length413
author_reputation55,974,657,421,087
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,471,348
net_rshares224,389,923,995
author_curate_reward""
vote details (7)
@whyknot ·
Totally agree. Same for me.
properties (22)
authorwhyknot
permlinkre-richardcrill-re-dan-peer-review-of-cardano-s-ouroboros-20180108t141154245z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 14:11:54
last_update2018-01-08 14:11:54
depth2
children0
last_payout2018-01-15 14:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation112,320,686,869
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,012,087
net_rshares0
@riskdebonair ·
$1.42
Cardamon :D
👍  ,
properties (23)
authorriskdebonair
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t171758515z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 17:18:00
last_update2018-01-06 17:18:00
depth1
children0
last_payout2018-01-13 17:18:00
cashout_time1969-12-31 23:59:59
total_payout_value1.418 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation52,998,248,638,153
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,570,758
net_rshares147,207,454,865
author_curate_reward""
vote details (2)
@rjmohsin ·
intresting buddy
properties (22)
authorrjmohsin
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t181646496z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 18:16:51
last_update2018-01-08 18:16:51
depth1
children0
last_payout2018-01-15 18:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation19,197,616,426
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,058,639
net_rshares0
@rondras ·
$0.15
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...
👍  ,
properties (23)
authorrondras
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t195457997z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 19:55:00
last_update2018-01-06 19:55:00
depth1
children0
last_payout2018-01-13 19:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.114 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation18,390,194,709,037
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,600,553
net_rshares15,254,826,803
author_curate_reward""
vote details (2)
@saifuk ·
good inform for all steemians thank you so much dear @dan
👍  
properties (23)
authorsaifuk
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t072538631z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-07 07:25:45
last_update2018-01-07 07:25:45
depth1
children0
last_payout2018-01-14 07:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation65,912,697,233
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,703,719
net_rshares366,173,129
author_curate_reward""
vote details (1)
@saifulke ·
EOS is far superior than any of the proposed platforms... Looking forward for EOS wallet launch!
👍  
properties (23)
authorsaifulke
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t040703406z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:07:03
last_update2018-01-07 04:07:03
depth1
children0
last_payout2018-01-14 04:07:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation4,634,225,776
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,675,819
net_rshares497,745,000
author_curate_reward""
vote details (1)
@scottv53 ·
Well clearly EOS, is the main chain to launch Hello Kitties applications of  the future, which is currently clogging the Ethereum Network.
properties (22)
authorscottv53
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t073948065z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 07:39:48
last_update2018-01-09 07:39:48
depth1
children0
last_payout2018-01-16 07:39:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation89,047,741
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,192,230
net_rshares0
@sequentialvibe · (edited)
$0.02
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!
👍  ,
properties (23)
authorsequentialvibe
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t073605694z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:36:12
last_update2018-01-06 08:31:15
depth1
children0
last_payout2018-01-13 07:36:12
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length224
author_reputation58,213,341,281,793
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,466,812
net_rshares2,281,032,406
author_curate_reward""
vote details (2)
@sexymaria ·
![image](https://img.esteem.ws/2bdi5y1y48.jpg)

I need boy friend
How are u..?
👎  , ,
properties (23)
authorsexymaria
permlinkre-dan-201816t175821417z
categorycardamon
json_metadata{"tags":["cardamon","ouroboros","eos","steem","bitshares"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-01-06 11:58:27
last_update2018-01-06 11:58:27
depth1
children2
last_payout2018-01-13 11:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation-465,531,395,611
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,508,127
net_rshares-13,277,928,994,076
author_curate_reward""
vote details (3)
@safetony ·
I need a Steem friend!
properties (22)
authorsafetony
permlinkre-sexymaria-re-dan-201816t175821417z-20180106t121031618z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 12:10:30
last_update2018-01-06 12:10:30
depth2
children1
last_payout2018-01-13 12:10:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation1,616,237,967,768
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,510,219
net_rshares0
@rajafahad ·
honest reveiw
properties (22)
authorrajafahad
permlinkre-safetony-re-sexymaria-re-dan-201816t175821417z-20180107t024856477z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 02:49:00
last_update2018-01-07 02:49:00
depth3
children0
last_payout2018-01-14 02:49:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation-6,279,412,433
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,664,949
net_rshares0
@shapla ·
there are  some valuable informations to learn here ... thanks a lot.
properties (22)
authorshapla
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t114452699z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 11:44:42
last_update2018-01-07 11:44:42
depth1
children0
last_payout2018-01-14 11:44:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation2,742,693,446,130
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,742,592
net_rshares0
@shazi935 ·
https://steemit.com/blockchain/@shazi935/i-need-wheel-chairs-capital-to-work-and-enroll-my-child-in-school-raisecharityfunds
properties (22)
authorshazi935
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t034128535z
categorycardamon
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"}
created2018-01-08 03:41:33
last_update2018-01-08 03:41:33
depth1
children0
last_payout2018-01-15 03:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation13,360,955,492
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,906,231
net_rshares0
@shazi935 ·
hi bro why steemit decline your payouts this wass a much needed content that you posted.
properties (22)
authorshazi935
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t034220828z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 03:42:24
last_update2018-01-08 03:42:24
depth1
children0
last_payout2018-01-15 03:42:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length88
author_reputation13,360,955,492
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,906,385
net_rshares0
@shihu4937 ·
$0.02
I am just so happy to find Dan on steemit. and get this close to him.
👍  
properties (23)
authorshihu4937
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180110t214512404z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-10 21:45:12
last_update2018-01-10 21:45:12
depth1
children1
last_payout2018-01-17 21:45:12
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation1,942,863,637
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,596,016
net_rshares2,402,623,712
author_curate_reward""
vote details (1)
@eatsrewards ·
$0.95
Enjoy the vote and reward!
👍  , ,
properties (23)
authoreatsrewards
permlinkeatsrewards-re-shihu4937re-dan-peer-review-of-cardano-s-ouroboros-20180110t214512404z
categorycardamon
json_metadata""
created2018-01-10 22:16:45
last_update2018-01-10 22:16:45
depth2
children0
last_payout2018-01-17 22:16:45
cashout_time1969-12-31 23:59:59
total_payout_value0.951 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation6,338,926,820,750
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,601,452
net_rshares102,033,967,866
author_curate_reward""
vote details (3)
@showtime24 · (edited)
$0.18
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.
👍  , ,
properties (23)
authorshowtime24
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t060748708z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 06:07:48
last_update2018-01-06 07:25:45
depth1
children13
last_payout2018-01-13 06:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.161 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length389
author_reputation579,652,376,659
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,454,049
net_rshares19,293,676,843
author_curate_reward""
vote details (3)
@daltono ·
$0.07
@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
👍  
properties (23)
authordaltono
permlinkre-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t063833379z
categorycardamon
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"}
created2018-01-06 06:38:33
last_update2018-01-06 06:38:33
depth2
children10
last_payout2018-01-13 06:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation1,792,030,495,152,214
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,458,525
net_rshares7,930,579,268
author_curate_reward""
vote details (1)
@showtime24 · (edited)
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?
properties (22)
authorshowtime24
permlinkre-daltono-re-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t065225878z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["daltono","ponts"],"app":"steemit/0.1"}
created2018-01-06 06:52:27
last_update2018-01-06 06:54:15
depth3
children9
last_payout2018-01-13 06:52:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length198
author_reputation579,652,376,659
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,460,460
net_rshares0
@ponts ·
$0.08
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.
👍  , ,
properties (23)
authorponts
permlinkre-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t061302172z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:14:21
last_update2018-01-06 06:14:21
depth2
children1
last_payout2018-01-13 06:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length181
author_reputation601,101,103,702
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,455,004
net_rshares8,214,181,171
author_curate_reward""
vote details (3)
@j4y ·
it's ok to trade for the EOS tokens on Bitshares though.  right?
properties (22)
authorj4y
permlinkre-ponts-re-showtime24-re-dan-peer-review-of-cardano-s-ouroboros-20180106t163921396z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 16:39:21
last_update2018-01-06 16:39:21
depth3
children0
last_payout2018-01-13 16:39:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation184,465,720,544
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,563,182
net_rshares0
@shuvo12dag ·
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.
properties (22)
authorshuvo12dag
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t040407334z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 04:04:09
last_update2018-01-07 04:04:09
depth1
children0
last_payout2018-01-14 04:04:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation4,458,723,860
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,675,416
net_rshares0
@skreza ·
$1.90
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..
👍  ,
properties (23)
authorskreza
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t114534751z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan","ned"],"app":"steemit/0.1"}
created2018-01-06 11:45:36
last_update2018-01-06 11:45:36
depth1
children0
last_payout2018-01-13 11:45:36
cashout_time1969-12-31 23:59:59
total_payout_value1.435 HBD
curator_payout_value0.469 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation12,357,028,398,386
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,505,934
net_rshares195,865,167,181
author_curate_reward""
vote details (2)
@skycornish ·
$0.21
Wow, ver informative!  Thank you and best of luck with EOS!
👍  
properties (23)
authorskycornish
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t171345275z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 17:13:45
last_update2018-01-06 17:13:45
depth1
children0
last_payout2018-01-13 17:13:45
cashout_time1969-12-31 23:59:59
total_payout_value0.161 HBD
curator_payout_value0.052 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation2,169,519,497,809
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,569,928
net_rshares22,532,027,794
author_curate_reward""
vote details (1)
@slayer10 ·
$1.74
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
👍  
properties (23)
authorslayer10
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180110t000937152z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-10 00:09:36
last_update2018-01-10 00:09:36
depth1
children2
last_payout2018-01-17 00:09:36
cashout_time1969-12-31 23:59:59
total_payout_value1.306 HBD
curator_payout_value0.435 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length842
author_reputation3,379,610,484,322
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,366,467
net_rshares163,072,721,325
author_curate_reward""
vote details (1)
@surfyogi ·
Good points. Thanks to @ned for his perspective.
👍  
properties (23)
authorsurfyogi
permlinkre-slayer10-re-dan-peer-review-of-cardano-s-ouroboros-20180112t093802866z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ned"],"app":"steemit/0.1"}
created2018-01-12 09:38:03
last_update2018-01-12 09:38:03
depth2
children1
last_payout2018-01-19 09:38:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation31,155,045,810,316
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,963,205
net_rshares238,726,590
author_curate_reward""
vote details (1)
@slayer10 ·
Absolutely I agree. I thank you. For both the answer and the vote. @surfyogi
properties (22)
authorslayer10
permlinkre-surfyogi-re-slayer10-re-dan-peer-review-of-cardano-s-ouroboros-20180112t094701122z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["surfyogi"],"app":"steemit/0.1"}
created2018-01-12 09:47:03
last_update2018-01-12 09:47:03
depth3
children0
last_payout2018-01-19 09:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation3,379,610,484,322
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,964,783
net_rshares0
@smokeasare165 ·
@dan ...that is well-detailed research..it very good that you are still contributing to the well fare of steemit...well done
properties (22)
authorsmokeasare165
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t085143380z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 08:39:54
last_update2018-01-06 08:39:54
depth1
children0
last_payout2018-01-13 08:39:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation514,137,420,082
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,476,394
net_rshares0
@smokeasare165 ·
hmmm..wish the decline payout was mine..could i been the happiest guy on earth..will get there someday....
properties (22)
authorsmokeasare165
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t220958141z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 21:58:06
last_update2018-01-06 21:58:06
depth1
children0
last_payout2018-01-13 21:58:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation514,137,420,082
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,621,762
net_rshares0
@smokeasare165 ·
@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...
properties (22)
authorsmokeasare165
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t065129939z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan","ned"],"app":"steemit/0.1"}
created2018-01-07 06:51:30
last_update2018-01-07 06:51:30
depth1
children0
last_payout2018-01-14 06:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length227
author_reputation514,137,420,082
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,699,037
net_rshares0
@soa432 ·
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
properties (22)
authorsoa432
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t233704501z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"links":["https://steemit.com/cryptocurrency/@soa432/top-3-bad-project-with-top-marketcap"],"app":"steemit/0.1"}
created2018-01-08 23:37:06
last_update2018-01-08 23:37:06
depth1
children0
last_payout2018-01-15 23:37:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation8,183,140,276
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,112,977
net_rshares0
@spacebird89 ·
kinda short peer review.
properties (22)
authorspacebird89
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t060305463z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 06:00:24
last_update2018-01-07 06:00:24
depth1
children0
last_payout2018-01-14 06:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation53,623,683,047
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,691,938
net_rshares0
@splendorhub ·
@dan Nice, block-chain technology will soon be dominating. Best wishes :)
properties (22)
authorsplendorhub
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t073115085z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 07:30:42
last_update2018-01-06 07:30:42
depth1
children0
last_payout2018-01-13 07:30:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation12,936,731,361,578
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,466,086
net_rshares0
@steembusiness ·
$9.72
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! 
👍  , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorsteembusiness
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t082143137z
categorycardamon
json_metadata{"tags":["cardamon"],"community":"busy","app":"busy/2.2.0"}
created2018-01-06 08:21:48
last_update2018-01-06 08:21:48
depth1
children2
last_payout2018-01-13 08:21:48
cashout_time1969-12-31 23:59:59
total_payout_value9.722 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length231
author_reputation89,941,509,688,392
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,473,639
net_rshares1,334,172,259,479
author_curate_reward""
vote details (27)
@sirstacksalot ·
$3.48
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.
👍  , ,
properties (23)
authorsirstacksalot
permlinkre-steembusiness-re-dan-peer-review-of-cardano-s-ouroboros-20180106t185038700z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 18:50:39
last_update2018-01-06 18:50:39
depth2
children1
last_payout2018-01-13 18:50:39
cashout_time1969-12-31 23:59:59
total_payout_value2.624 HBD
curator_payout_value0.855 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length313
author_reputation18,203,994,280,271
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,588,158
net_rshares359,731,388,976
author_curate_reward""
vote details (3)
@snowflake · (edited)
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.
👍  
properties (23)
authorsnowflake
permlinkre-sirstacksalot-re-steembusiness-re-dan-peer-review-of-cardano-s-ouroboros-20180106t200920042z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 20:09:21
last_update2018-01-06 20:10:15
depth3
children0
last_payout2018-01-13 20:09:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length546
author_reputation33,312,252,512,655
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,603,187
net_rshares1,160,489,610
author_curate_reward""
vote details (1)
@syedazunaira250 ·
waoo thats great . carry on
properties (22)
authorsyedazunaira250
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t033654386z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:36:48
last_update2018-01-07 03:36:48
depth1
children0
last_payout2018-01-14 03:36:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation1,527,683,929
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,671,588
net_rshares0
@tamhunt ·
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.
properties (22)
authortamhunt
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t195803602z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 19:58:12
last_update2018-01-08 19:58:12
depth1
children0
last_payout2018-01-15 19:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation3,048,005,039
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,074,928
net_rshares0
@tanishqyeverma ·
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 !
properties (22)
authortanishqyeverma
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t100548933z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 10:05:51
last_update2018-01-06 10:05:51
depth1
children0
last_payout2018-01-13 10:05:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length479
author_reputation1,624,635,234,378
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,489,589
net_rshares0
@th1nkfast ·
$0.16
Cardano is a bargain today!
👍  
properties (23)
authorth1nkfast
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t212112042z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 21:21:12
last_update2018-01-08 21:21:12
depth1
children0
last_payout2018-01-15 21:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.121 HBD
curator_payout_value0.040 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation2,874,658,722,940
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,089,048
net_rshares15,523,429,866
author_curate_reward""
vote details (1)
@tiagopaixao ·
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...
properties (22)
authortiagopaixao
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180108t154902695z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-08 15:48:57
last_update2018-01-08 15:48:57
depth1
children0
last_payout2018-01-15 15:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length401
author_reputation30,669,084,740
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,031,274
net_rshares0
@tiffanyrej ·
Good read! Yeah cardano is very interesting . I think they're planning something awesome this 2018
properties (22)
authortiffanyrej
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t080028771z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 08:00:27
last_update2018-01-06 08:00:27
depth1
children2
last_payout2018-01-13 08:00:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation1,015,760,434,678
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,470,425
net_rshares0
@cyberberry ·
Can you please read the article and do your best to understand?
properties (22)
authorcyberberry
permlinkre-tiffanyrej-re-dan-peer-review-of-cardano-s-ouroboros-20180106t134216204z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 13:42:15
last_update2018-01-06 13:42:15
depth2
children0
last_payout2018-01-13 13:42:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation282,512,521,525
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,526,853
net_rshares0
@edolascrypto ·
Pretty sure dan does not find it interesting and basically just called it a worse dpos ripp off without giving credit where due.
properties (22)
authoredolascrypto
permlinkre-tiffanyrej-re-dan-peer-review-of-cardano-s-ouroboros-20180106t091937121z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 09:19:06
last_update2018-01-06 09:19:06
depth2
children0
last_payout2018-01-13 09:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation84,491,306,580
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,482,287
net_rshares0
@tiger.woods ·
I made a few grand on Cardano then sold and bought EOS - thanks for confirming my opinion.
properties (22)
authortiger.woods
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t015455423z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 01:54:54
last_update2018-01-07 01:54:54
depth1
children0
last_payout2018-01-14 01:54:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,657,526
net_rshares0
@tony10 ·
$0.28
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?
👍  
properties (23)
authortony10
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t070352461z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 07:03:51
last_update2018-01-06 07:03:51
depth1
children0
last_payout2018-01-13 07:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.213 HBD
curator_payout_value0.067 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation2,970,454,725,681
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,462,225
net_rshares29,280,760,794
author_curate_reward""
vote details (1)
@transcendence ·
@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.
properties (22)
authortranscendence
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t183215128z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 18:32:15
last_update2018-01-06 18:32:15
depth1
children0
last_payout2018-01-13 18:32:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length525
author_reputation345,732,151
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,584,773
net_rshares0
@utomo ·
thank you for information
https://media.giphy.com/media/6oB3X3W6MYM3C/giphy.gif
properties (22)
authorutomo
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t145813376z
categorycardamon
json_metadata{"tags":["cardamon"],"image":["https://media.giphy.com/media/6oB3X3W6MYM3C/giphy.gif"],"app":"steemit/0.1"}
created2018-01-07 14:58:15
last_update2018-01-07 14:58:15
depth1
children0
last_payout2018-01-14 14:58:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation26,947,357,017
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,778,729
net_rshares0
@vit05 ·
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
properties (22)
authorvit05
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180109t011048436z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"links":["https://twitter.com/IOHK_Charles/status/950423016256737283"],"app":"steemit/0.1"}
created2018-01-09 01:10:51
last_update2018-01-09 01:10:51
depth1
children1
last_payout2018-01-16 01:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length186
author_reputation2,649,977,071
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,129,084
net_rshares0
@pip010 ·
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
properties (22)
authorpip010
permlinkre-vit05-re-dan-peer-review-of-cardano-s-ouroboros-20180109t102845331z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-09 10:28:45
last_update2018-01-09 10:28:45
depth2
children0
last_payout2018-01-16 10:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation0
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,219,754
net_rshares0
@vnyrox ·
$0.08
Great post sir, Is it a good time to invest in Cardano @dan
👍  , ,
👎  
properties (23)
authorvnyrox
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t055633578z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 05:56:33
last_update2018-01-06 05:56:33
depth1
children11
last_payout2018-01-13 05:56:33
cashout_time1969-12-31 23:59:59
total_payout_value0.067 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation-58,366,725,544
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,452,443
net_rshares8,582,075,249
author_curate_reward""
vote details (4)
@allcapsonezero ·
lololololol... didn't read that post huh?
👍  ,
properties (23)
authorallcapsonezero
permlinkre-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060449894z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:04:51
last_update2018-01-06 06:04:51
depth2
children1
last_payout2018-01-13 06:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation21,531,888,670,244
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,453,624
net_rshares458,128,261
author_curate_reward""
vote details (2)
@vnyrox · (edited)
: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
👍  
properties (23)
authorvnyrox
permlinkre-allcapsonezero-re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060951579z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:09:51
last_update2018-01-06 06:10:09
depth3
children0
last_payout2018-01-13 06:09:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation-58,366,725,544
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,454,357
net_rshares98,377,600
author_curate_reward""
vote details (1)
@brandonk ·
Quite the contrary friend, Dan is explaining how Cardano's design is slow and utterly...useless.
👍  ,
properties (23)
authorbrandonk
permlinkre-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t125027930z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 12:50:24
last_update2018-01-06 12:50:24
depth2
children0
last_payout2018-01-13 12:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation57,134,789,343,839
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,517,193
net_rshares904,065,769
author_curate_reward""
vote details (2)
@eltomos ·
$0.75
Did you read the post? Damn son..
👍  , , , ,
properties (23)
authoreltomos
permlinkre-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060011822z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:00:09
last_update2018-01-06 06:00:09
depth2
children1
last_payout2018-01-13 06:00:09
cashout_time1969-12-31 23:59:59
total_payout_value0.568 HBD
curator_payout_value0.182 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation7,896,465,759
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,452,960
net_rshares77,710,103,727
author_curate_reward""
vote details (5)
@vnyrox ·
lol I did but was it goes beyond my head i know my question is irreverent. :p
👍  
properties (23)
authorvnyrox
permlinkre-eltomos-re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060814225z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:08:15
last_update2018-01-06 06:08:15
depth3
children0
last_payout2018-01-13 06:08:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation-58,366,725,544
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,454,112
net_rshares101,451,900
author_curate_reward""
vote details (1)
@max-infeld ·
properties (23)
authormax-infeld
permlinkre-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t060844154z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:08:45
last_update2018-01-06 06:08:45
depth2
children0
last_payout2018-01-13 06:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation2,039,194,374,573
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,454,193
net_rshares449,251,531
author_curate_reward""
vote details (2)
@ponts ·
That would be a NO
👍  
properties (23)
authorponts
permlinkre-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t055816641z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 05:59:36
last_update2018-01-06 05:59:36
depth2
children4
last_payout2018-01-13 05:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation601,101,103,702
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,452,876
net_rshares110,674,800
author_curate_reward""
vote details (1)
@vnyrox ·
Thanks @ponts  what do you think where should i invest? any suggestions?
👍  
properties (23)
authorvnyrox
permlinkre-ponts-re-vnyrox-re-dan-peer-review-of-cardano-s-ouroboros-20180106t061100498z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["ponts"],"app":"steemit/0.1"}
created2018-01-06 06:11:00
last_update2018-01-06 06:11:00
depth3
children3
last_payout2018-01-13 06:11:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation-58,366,725,544
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,454,526
net_rshares110,674,800
author_curate_reward""
vote details (1)
@volcom · (edited)
Nice sharing... Good videos for us information...
Thank you, and success is always for you @dan
👍  
properties (23)
authorvolcom
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t060253114z
categorycardamon
json_metadata{"tags":["cardamon"],"users":["dan"],"app":"steemit/0.1"}
created2018-01-06 06:03:00
last_update2018-01-06 06:03:30
depth1
children0
last_payout2018-01-13 06:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation-5,412,931,693
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,453,336
net_rshares92,229,000
author_curate_reward""
vote details (1)
@wakeupnd ·
Glad I invested in Steem and EOS instead of this.
properties (22)
authorwakeupnd
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t064131361z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 06:41:42
last_update2018-01-06 06:41:42
depth1
children0
last_payout2018-01-13 06:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation73,088,931,691,967
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,458,979
net_rshares0
@whatamidoing · (edited)
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.
👍  
properties (23)
authorwhatamidoing
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180106t073455507z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-06 07:35:00
last_update2018-01-06 07:36:48
depth1
children0
last_payout2018-01-13 07:35:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length646
author_reputation186,276,751,633,766
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,466,661
net_rshares400,370,043
author_curate_reward""
vote details (1)
@wondratv ·
amazing
properties (22)
authorwondratv
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t035931593z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 03:59:30
last_update2018-01-07 03:59:30
depth1
children0
last_payout2018-01-14 03:59:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation468,484,154,735
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,674,718
net_rshares0
@xfreemanx ·
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..
properties (22)
authorxfreemanx
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180110t130342119z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-10 13:04:06
last_update2018-01-10 13:04:06
depth1
children0
last_payout2018-01-17 13:04:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length281
author_reputation13,725,461,332
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id28,493,756
net_rshares0
@ygriffiny ·
$0.13
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.
👍  
properties (23)
authorygriffiny
permlinkre-dan-peer-review-of-cardano-s-ouroboros-20180107t222953625z
categorycardamon
json_metadata{"tags":["cardamon"],"app":"steemit/0.1"}
created2018-01-07 22:29:51
last_update2018-01-07 22:29:51
depth1
children0
last_payout2018-01-14 22:29:51
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation234,745,476,838
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,857,411
net_rshares13,203,454,183
author_curate_reward""
vote details (1)
@yoelvis11 ·
Hola bienvenido a esta maravillosa comunidad espero sea de mucho éxitos para ti y puedas aprender cosas nuevas te saluda tu amigo @yoelvis11
properties (22)
authoryoelvis11
permlinkre-dan-201816t23279624z
categorycardamon
json_metadata{"tags":["cardamon","ouroboros","eos","steem","bitshares"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"}
created2018-01-06 21:08:06
last_update2018-01-06 21:08:06
depth1
children0
last_payout2018-01-13 21:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length140
author_reputation9,807,296,431
root_title"Peer Review of Cardano's Ouroboros"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,613,614
net_rshares0