DEV Community

Discussion on: Blockchain without cryptocurrency? 🤔

Collapse
 
drbearhands profile image
DrBearhands • Edited

A blockchain is not the same as a proof-of-work consensus algorithm.

Proof of work consensus is what requires high amounts of electricity. It is used to ensure that making changes to a datastructure is expensive (more or less).

Blockchain is pretty much a stack where cryptography ensures that only push and pop operations result in valid states.

Together, the two ensure that past operations cannot be easily edited, as it would require popping a bunch of value and then expensively pushing values back (as the longest chain is considered 'the truth', you need to push values back faster than everyone else).

There are alternatives to proof of work though, such as proof of stake and proof of burn. If the network is (partially) trusted, you don't need to incur artificial expenses at all, look at the consensus protocols for ripple and stellar for instance.

I'm not familiar with how people expect blockchains to reduce bureaucracy though.

Collapse
 
blankbash profile image
Erik

Got it!

You guys are awesome! I really appreciate your high quality answers.

Well, if Blockchain can be implemented without proof-of-work/stake then they doesn't even have to use blockchain at first place, they can just develop their own secured chain of blocks right?! --assuming they can decentralize it somehow

Please correct me if I'm wrong, what I understand reading was that secured blocks where being developed since 1991, what I still not getting is why companies are suddenly popping interest so late. Almost a 17 years gap, was is just a mater of effort to develop or a major issue that couldn't be solved before?

Collapse
 
drbearhands profile image
DrBearhands

I'm not familiar with the secured blocks research you mentioned, so I can't really comment on that.

As to the current interest in blockchains, I expect it is mostly due to the popularity of bitcoin. Something similar happened with second life. Managers who make investment decisions are not necessarily tech-savvy enough to make a personal evaluation of new technology, so they essentially have only market trends to go by. I expect we are currently experiencing some hype, some criminal abuse and some genuine use-cases, although it is difficult to say how much each factor is contributing.

Well, if Blockchain can be implemented without proof-of-work/stake then they doesn't even have to use blockchain at first place, they can just develop their own secured chain of blocks right?! --assuming they can decentralize it somehow

I would say approaches such as proof-of-stake and proof-of-burn are things developed as 'their own secured chain of blocks'. I may not have been clear on this, but costs incurred by both methods only exist in the blockchain, they have negligible electric costs.

Collapse
 
diegodorado profile image
Diego Dorado

Wow, this is a really brief and clear explanation!