this post was submitted on 25 Aug 2025
148 points (90.7% liked)

Ask Lemmy

34271 readers
1133 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

Hello,

I have been researching about blockchains and stuff and it all seems like a big scam. It's not sustainable and can be replaced by a simple database.

is there any legitimate use cases of blockchains or it is all just a big scam?

top 50 comments
sorted by: hot top controversial new old
[–] Limonene@lemmy.world 11 points 1 day ago

The point of the blockchain is to achieve distributed consensus of what's in the database. That way, one entity can't unilaterally change what the database says.

If you have a public non-profit institution maintaining the database, obligated to serve all legal customers, with serious consequences for tampering with it, you can get pretty much everything blockchain can do, for a billionth of the computing power.

But with that system, you would lose these features:

  • partially-anonymous participants
  • service of all customers, even illegal ones
  • immunity to court orders
[–] bluecat_OwO@lemmy.world 6 points 1 day ago

since a lot of replies branched towards Cryptocurrency, which is where blockchains are implemented the most in. But it isn't the sole purpose of blockchain.

It's a distributed, append only(theoretically), tamper proof data structure. Look up merkle tree, certificate distribution, etc. These comes in different shapes and sizes for storing transaction logs, to keeping track of online identity and false impersonation.

You can implement a blockchain that might not get as power hungry as crypto block chains(because mining), and it's a cool solution in distributed systems

[–] WhyJiffie@sh.itjust.works 4 points 1 day ago* (last edited 1 day ago)

it cannot really replace a simple database. it has an integrity guarantee. not in the way that data won't get modified accidentally, but that it won't get modified onesided.

the git version control system also uses a kind of a blockchain structure. git was made by the creator of linux. a major difference is that git does not use proof of work for consensus, I think it just does not use anything for that, other than the web server's access control mechanism.
commits are built on top of a large chain of histories, and the commit ID verifies that the current state and the history of it is the exact same when you checkout that commit ID on any other computer. if you go find in the repository a commit made 3 years ago, and change that commit (this is supported by git but not recommended), either the content or the metadata like time of commit, the whole history after that also need to get rewritten to remain valid, and so all those commits will now have a new commit ID

[–] Manifish_Destiny@lemmy.world 14 points 2 days ago

Yes. Tracking stock shares would prevent dark pools and naked short selling to some degree.

That's also why it will never happen.

[–] Gorilladrums@lemmy.world 7 points 2 days ago

Not really, blockchain technically has been around for almost two decades and there still isn't a good use for them. It's very interesting piece of tech that could potentially be useful, but still isn't in a practical sense.

Think of it this way, blockchain tech is a solution looking for a problem to solve rather than the other way around.

[–] JandroDelSol@lemmy.world 4 points 1 day ago

blockchains are a solution looking for a problem.

[–] jenesaisquoi@feddit.org 8 points 2 days ago

Yes. Public append-only data structures. For example: https://en.m.wikipedia.org/wiki/Certificate_Transparency

[–] JumpyWombat@lemmy.ml 108 points 3 days ago (22 children)

Any application where you want to record something publicly without the possibility to alter it and in absence of a central authority.

A database requires a central authority so it doesn’t cover the same use cases.

[–] pupbiru@aussie.zone 6 points 2 days ago* (last edited 2 days ago)

i’ll add a concrete example to this… i’ve described a startup i built in another comment but TLDR:

compliance obligations when protecting kids from sexual predators are difficult to prove: sexual abuse usually comes out 30 years later, so standard record keeping is pretty fraught… companies (like the company monitoring compliance - our startup for example) might not exists any more, paper gets lost, database formats become difficult or impossible to read

writing signed proof of compliance to the blockchain is a way of ensuring that an organisation was doing what they could at the time… how this is achieved is tricky for anyone but the source of record, but with blockchain it’s possible (described in the post)

[–] mormund@feddit.org 34 points 3 days ago (3 children)

Good summary, a few additions from my side:

  • Being public is not required. E.g. banks could form an internal block chain shared only with other banks.
  • Blockchains are a database. An immutable and usually distributed database.
[–] Max_P@lemmy.max-p.me 25 points 3 days ago

Also worth noting that the computations don't have to be expensive either, it's only there in cryptocurrencies to artificially limit the number of blocks generated on a public system and tie it into the reward system.

So for a bank, that could be a plain single iteration of a sha256 hash, and once share everyone agrees those were the transactions and you can't go back and change one without having to change the whole chain.

Make it sha1 and you basically have git.

A blockchain is more or less just an append-only database. Or even an append-only replication log with built-in checksums.

load more comments (2 replies)
[–] bluecat_OwO@lemmy.world 1 points 1 day ago

this was a no nonsense answer, unlike the others discussing Cryptocurrency ;~;

[–] thedruid@lemmy.world 2 points 2 days ago

That was.. Very well said

load more comments (18 replies)
[–] Nibodhika@lemmy.world 4 points 2 days ago

It absolutely can't be replaced by a simple database, saying that makes me question that you truly understand the technology. Here's the important question, who owns the database and how do you know you can trust them?

Would you trust me to manage a database that holds your money? What about someone who's actively opposing you? How about a foreign nation? That's the thing blockchains solve, a decentralized 0-trust way to have an append only ledger, yes a database can be an append only ledger, but it can't be decentralized or 0-trust, that's the important thing here.

Let me give you a very recent example, Steam has been censored, and has had to remove certain games from their catalog, this happened because PayPal and other payment providers forced their hand. This is the sort of problems that arise from having someone own the database, they can dictate what you do or don't. Let me be extra clear, this sort of censorship is essentially impossible in Bitcoin and other cryptocurrencies because no one controls the database.

[–] CanadaPlus@lemmy.sdf.org 25 points 2 days ago

It's just a data store (database kind of implies extra features) that's trust-free and decentralised. It's not even the only way to implement one; Ripple for example uses a slightly different scheme.

How has nobody linked the XKCD on this exact question? Randall Monroe compares them in the alt text to grappling hooks: something cool that might have uses, but only in very specific niches. https://xkcd.com/2267/

[–] tty5@lemmy.world 42 points 3 days ago (9 children)

Anything that requires a public, immutable database. Land registry would be one example. Notary public for electronic documents would be another.

You can leverage the majority consensus to create a trusted software build system. Each block would be a package build

load more comments (9 replies)
[–] MTK@lemmy.world 18 points 3 days ago (5 children)

Like most of the tech bro industry, they take something with real value, completely misunderstand it, creates fake value, pumps.

LLMs are awesome, but the current AI industry is terrible and completely misses the actual value of LLMs.

NFTs are actually a great way to digitally prove ownership, basically the future of digital ownership certificates.

Crypto is a way to make money for the people by the people, and not for the rich, by the rich, through the people.

Blockchain is the core idea that makes crypto and NFTs possible. You can think of it as a decentralized DB, it's useful because it means that the majority controls the data and not a centralized authority.

Imagine that the government decided to print a million dollars and give it to some politician, it's small enough to not be noticed by the market, but it still devalues the money. They could only do it because they own the money management system. In Blockchain each transaction is confirmed by external parties (often multiple ones) and it has to align with the already existing db (which everyone has a copy of) so in that scenario if the government tries to "print" money it will be conflicting with the existing db and it will not be accepted, so they will have to either continue with an incompatible db (making it as worthless as monopoly money) or cancel the transactions by realigning with the common db.

Blockchain is not meant to be a database like the ones in web servers, it is meant to be a database for a consensus of users.

load more comments (5 replies)
[–] General_Effort@lemmy.world 12 points 3 days ago (6 children)

Besides money laundering, you mean? Not as such.

Merkle Trees were thought up in the 70ies or so. A blockchain is a Merkle Tree without branches. They are used in a number of application; for example git which predates bitcoin.

The actual innovation behind bitcoin is mining. A payment system needs someone who runs it. Bitcoin introduced a way for these people to get paid by creating new currency for themselves. That way, there is no single entity in charge. There is no contractual relation that would require government enforcement.

If a Merkle Tree is the only thing a blockchain is to you, then it has legit uses. But that was already widely used before a simplified version became called blockchain.

If you're thinking about a bitcoin-type blockchain, then evading government oversight is its sole use. The technical overhead and the economic inefficiencies exist only to obscure identities and legal responsibilities.

load more comments (6 replies)
[–] zxqwas@lemmy.world 24 points 3 days ago (7 children)

Using it as a currency which requires no third party for transactions is a legitimate use case. See current payment processors vs Steam conflict for why it may be a good idea. There are a lot of times when it's not a good idea either.

However the price must be reasonably stable and transaction cost low. Don't think any of the major CCs qualify.

load more comments (7 replies)
[–] nutsack@lemmy.dbzer0.com 5 points 2 days ago

it's really difficult to be anonymous with a credit card

[–] FireRetardant@lemmy.world 16 points 3 days ago (1 children)

Some countries are considering using blockchain in the future for their land title registry.

here is an article about it

I read something about potentially using blockchain the future while using onland (ontarios land registry service) but i can't seem to find the page that mentions it.

here is a similar system proposed for Bangladesh

[–] lemmyng@piefed.ca 13 points 3 days ago (1 children)

There's a few issues with that approach:

  • Blockchains can't forget, but they also need to add new blocks on every period, meaning that there's a lot of idle events that are added to the chain. You can increase the period, but then the chain has more latency. Either way, the disk space needed to store the full chain grows really fast, which becomes a problem when trying to bootstrap a new root node, or backup an existing one.
  • Unless you're trading land titles internationally (read: there's no single trusted authority), blockchains could just be replaced with a regular distributed database and servers.
  • Chains don't offer out of band recovery and error correction.
load more comments (1 replies)
[–] neidu3@sh.itjust.works 16 points 3 days ago (1 children)

In theory, yes. I can't think of a practical example, but it's basically a decentralized, public, write-only database. I'm sure there are niche applications for use as a public ledger or similar.

load more comments (1 replies)
load more comments
view more: next ›