Proof of work existed long before bitcoin, and I haven't seen any evidence that bitcoin is an important innovation despite it being 13 years old. Send it to zerooo
Bitcoin is very smart. When I first learned about it, I thought it was so cool how it all came together, the combination of cryptographic security, distributed trust, even a Forth-like mini language built in. I made my own coin, I played with the source code, I made my own nonstandard protocol that used a bitcoin blockchain (unfortunately I never bought any bitcoin, but at any given time it's a terrible investment, even if it's paid off retrospectively).
Anyway, I say all this because I really find it clever, and I really wanted it to be able to do something useful, but the reality is, it doesn't. It's never going to be useful, it's been adopted by scammers and mountebanks, it has no utility and will cause so much harms in the scams that it supports.
So while it seems like a cool innovation, and from a purely technological standpoint it is, in reality it's poison. In that regard, it has (sorry for the tired analogy) a lot in common with communism. Cool idea, doesn't work at all, destroys lives. We need to let it go.
>"When I first learned about it, I thought it was so cool how it all came together, the combination of cryptographic security, distributed trust, even a Forth-like mini language built in."
Interesting, could you elaborate on the Forth bit? Where does this fit in? This is the first I've heard of it but admittedly I don't know that much about Bitcoin.
See the link below. It includes a stack based scripting language (essentially a subset of Forth) for processing transactions so you can do some customization in how transactions unfold. As I understand it (and I don't know much about Ethereum) a big difference is that Eth has a Turing complete scripting language that can run code as part of transaction, while bitcoin only has a subset that doesn't include e.g. looping.
Bitcoin and PoW not really, but the core idea of cryptocurrency stuff is distributed byzantine-fault-tolerant consensus where honest behavior is economically incentivized. That sounds kind of abstract and bitcoin itself is not very useful (throughput is too low), but if it can be made to scale it’s very powerful. First of all, it allows computation that no one can control, which is most obviously applicable to finance with things like automatic market makers.
But more compelling to me is that it allows you to do what bittorrent did but in general - with bittorrent anyone can host a file and a static link can help you find those people and download the file (with no need to trust that the person serving the file hasn’t replaced it with some other file). This is possible because of cryptographic primitives like hashes that let you use a few bytes to uniquely identify the contents of any file, distributed hash tables that let you come to agreement on which IP addresses are serving which files, etc. (If you don’t think bittorrent is useful, that’s fine, but me and many others think it is.)
There’s still a lot of work to be done, but we’re approaching a point where you can “bittorrent-ize” a much broader class of services. Bittorrent works only for serving files whose hashes you already know, but doing the same for a service like HN is much more difficult. You need to allow posts from many different people and know when they were submitted, and maintain vote counts, but a distributed ledger is perfect for this. It’s not practical to do this on any decentralized cryptocurrency right now, but we’re slowly getting there.
Like I said, scaling this is a very difficult problem, for example you need to have data sharding so that not every node has to store the full ledger, but over the last few years cryptocurrency people have come up with very good data sharding systems like danksharding (which will hopefully be implemented on Ethereum in the next decade).
You also don’t want every node to have to redo all the computation, but ZK-proofs (which were basically only used in academia before cryptocurrencies came along and poured billions of dollars of funding into making them practical) make that unnecessary at the cost of some significant overhead when performing the computation. Despite that cost, we already have really good layers on top of Ethereum called ZK-rollups that lower the transaction cost to almost zero and introduce no new trust assumptions.
You also want state expiry or state rent so the network state doesn’t grow monotonically, but that’s also being developed and in the past few years we’ve also developed some really good state expiry schemes.
You also want fast finality so that you don’t have to wait 10 minutes for the contents of the ledger to stabilize, but we finally have scalable permissionless byzantine fault tolerant consensus schemes that have very fast finality (<30s), one of which is being implemented on ethereum (called casper).
There’s other cool stuff too, but I think this direction is one of the most exciting ones.
Disclosure: I’m a protocol developer for a major cryptocurrency (although not ethereum or bitcoin)
…well, even if you don’t consider naturally occurring phenomena like fire to be a human innovation, I’d argue things like “the written word” or “mathematical notation” or “formal logic” are perhaps a bit more important, and one might even say foundational to Bitcoin.