Hacker News new | past | comments | ask | show | jobs | submit login
Decentralized Reddit using a DHT to store content and a blockchain to rank it (slideshare.net)
198 points by sktrdie on Oct 15, 2015 | hide | past | favorite | 92 comments



Re: the hosting of topics/subreddits in the DHT, I've done quite a lot of research [1] into a very innovative yet not well known P2P publish-subscribe network design [2] from some Norweigan computer scientists that removes the role of hosting for nodes not interested in a topic, even designing a decentralised microblogging platform on top of it [3].

It's called PolderCast, and the way it works is that it models subscribers of a topic as a ring, and then uses 3 different overlay networking modules to efficiently constructing the network (a basic gossip one, one that finds nodes with intersecting interests, and then a final one which constructs the neighbours for a node in the topic ring). Thus, only subscribers of a topic are responsible for hosting, in contrast to a DHT where every node would be (even for questionable content that they may not agree with).

[1] http://liamz.co/wp-content/uploads/2015/03/Computer-Science-...

[2] http://acropolis.cs.vu.nl/~spyros/www/papers/PolderCast.pdf

[3] BitWeav http://liamz.co/wp-content/uploads/2015/03/whitepaper.pdf


I have an idea for a federated blockchain to support a subjective crypto currency. So each coin's value is unique and determined by whoever might be trading it. The way that knowledge of the network state will flow looks like boosted gossip, maybe similar to PolderCast layers.

Here's a user's eye view of it: http://thenewstack.io/why-art-could-become-currency-in-a-cry...


One question; what protections are in place to prevent some of the problems which plague user aggregated links (which are selected/ranked according to votes)? Is there any anti-vote cheating mechanisms in place? Anti-Spam measures?

One of the biggest problems that digg (RIP) and reddit have been fighting is organized groups of people (and/or their sockpuppets or network of bots) voting up their own links. Everything from SEO companies, marketing agencies to just plain old greedy spammers all attempt to game the system. There's quite a monetary incentive to reach reddit's front page and people have been abusing the system for over a half a decade now. What keeps those people in check, those who discover ways around or through their automated anti-vote cheating code (which is the majority), are the moderators. They're the fail safe. Having the entire thing decentralized removes the mods from the equation and your fail-safe as well. That's the problem; removing the mods may give you slightly less censorship, but you're not accounting for all the good things that come with having mods.

I don't mean to be cynical about this, but I do know for a fact this will never be more than a small experiment. I know this because if this ever got popular, I'd abuse the shit out of it myself and I have little to no incentive too. I can't even begin to imagine the abuse level from people with an actual motive.


You can only abuse it as long as you have points. With Reddit (or systems like it) you have no limits - for instance, you could upvote all content on the front-page every hour. On the other hand, with this Kudos system, you would run out of points rather quickly if you did that.

I agree, as others posted in this thread, that there are many other problems that need to be addressed. Frankly I don't know if a p2p network system can even be built to address all issues - social voting networks based on reputation are rather complex.

However I hope to have shed the light on some interesting properties that can be achieved by combining the decentralized aspects of DHT keys, with the consensus features of a blockchain. Moreover, the idea of of using cryptocurrency tokens, for things other than currency, is a field that needs to be explored more.


> You can only abuse it as long as you have points.

You seem to be implying that this is some sort of road block or hurdle for those interested in gaming the system. Unfortunately, it's not even a speed bump. I think you underestimate just how resourceful and clever these people are. I'm a mod of a few large subreddits on reddit and I can assure you, "having points" is no more a hurdle to them than saying "on reddit, you have to have an account to vote".


What I don't see covered is the following problems:

1. Do people have to buy points from miners? 2. What prevents someone from buying lots of points to promote their content?


1. Not sure.

2. It looks like the transaction sizing rules make it exponentially expensive to upvote multiple times.


Could you elaborate on how it is exponentially expensive? I don't see how that would work. If 100 people are allowed to vote on a topic with this system, then one person with 100 sock puppets should be able to vote on a topic, as there isn't a technical difference.


That's also how I see it. There is nothing exponential about it. The cost for someone using a sockpuppet to vote for a post is exactly the same as for anyone else.

So either you have to make it really expensive to vote and that would make this a no-go or you end up with cheap advertisement that you can't even block easily.

There is one trait to this system that is interesting: the cost to promote your content goes up with the rate of popularity of other posts. Kinda like in the real world where advertising on a popular page costs more than on a random blog.

But because there is no limit as to how many people would try to advertise, the whole content would soon be pure ads.


It looks like funding all those sock puppets with coin would cost lots of money.

From the slides:

  Sending 10 points to someone would require 10 addresses
  with at least 2 points each. Creating 10 addresses with
  2 points each would require 10 transactions of 4 points
  each, meaning 40 points.
Those 10 addresses require the same funding amount whether from sock puppet accounts or from one account.

Perhaps it's not exponential though.


Well to acquire a point you can use in voting would have to get one from a miner. That would be the same, no matter if you are a real person or an advertiser/spammer. Unless you gained points before with your own content.

Even if the price would be 4x the amount of the cost of other votes, it can't be a deterrent because 4x a little amount is still a little amount. If a vote costs 1 cent then the spammer would pay 4cent. Not a big deal.


You do not need a blockchain to do this. If you can represent something using an append only data structure, a DHT is enough.


> If you can represent something using an append only data structure, a DHT is enough.

Can you elaborate? Is the blockchain not an example of an append-only data structure?


A block-tree would be append only. The blockchain is a block-tree + a canonical leaf (or a head) which is a mutable variable.

https://medium.com/@arthurb/what-do-blockchains-accomplish-e...


Basically a Directed Acyclic Graph on top of the DHT should suffice. Every node in the graph is signed and links back to two things: the node it is referencing (eg it is a comment to a post) and the last contribution of this user. Each contributor is announcing their last contribution (and probably reannouncing the last contributions of their "friends"). So finding new content is just a matter of listening to friends and following bread crumbs from there.


The blockchain (proof of work) is for voting.


You need a Sybil prevention mechanism to avoid stuffing the ballot box, and that can be a small proof of work stamp, but that doesn't mean you need to use a blockchain and incur the scalability hit.

Votes belong to each user and are spent exactly once. You could try to vote twice but it would be detected and would not lead a double spending problem.


I agree that you don't need a blockchain, but can you elaborate?

I think proof-of-work is a bad mechanis to prevent sybil attacks on any new blockchains except bitcoin because someone can just cause a massive jump in computing power for a dayand destroy the whole network. Now the infrastructure is there, we need proof of stake or something else.


There are two parts to your question.

1) What technology is appropriate for a decentralized reddit, and 2) What technology is best for a decentralized cryptocurrency.

Regarding (1), a small proof of stake stamp for upvote is fine. So, someone can upvote a Lock Ness monster comment to astronomical level for a while by buying computing power? Big deal. Or you can build a social network and rely on something like Sybil Guard. You don't strictly need a consensus here... you can decide to only view the upvotes associated with people in your extended network.

The reason they are using a blockchain is because it is sexy, and it is easier than thinking seriously about the problem.

Regarding (2), proof of stake with safety bonds and yearly checkpointing is probably the sweetspot.


Right! That's why I think fully distributed peer-to-peer is the wrong goal to strive for. A lot of group activities (like posting to a topic and voting) are much more easily done in small cohorts. Yes, mental poker is possible but it's in its infancy and our efforts are currently better spent assuming there are going to be servers. The question is, can we choose what servers! The DHT can route you to a server which is authoritative for a particular group activity. That allows you to clone some post and share it with your friends (on a server you trust) and they can reshare on servers they trust ...As you said, what is needed here is not consensus but just signaling from people you KNOW.

The rare resource here isn't work, it's reputation. You personally won't add 1 million friends. If you want to get signals and votes from friends then you don't need proof of work.


Self-censorship and censorship by others will continue to hamper online discourse until people feel safe from reprisal. A decentralized P2P discussion system would be a huge step toward this goal. I've been following Ethereum for a while now; have you considered using the platform to build this as a dapp?



This is clever and interesting, but I'm not sure it addresses the central problem.

Reddit made the news in the last year for some (mostly unfair) claims of censorship. However, rather than directing censorship which the plebes had to accept, the social pressure from the plebes necessitated these overt acts. For weeks afterward with FPH, we kept reading comments like "well, what about coontown?". These commenters may have felt they were being ironic, or espousing fairness (hey, what's good for one is good for the other), but the collective/aggregate effect was to clamp down even further. These same people are the ones who were able to push Reddit's management in that direction in the first place.

These people won't disappear if you implement blockchain-reddit. (Though, there's probably a plausible argument that they might stay away.) There will be no blockchain-reddit management to pressure into overt censorship, but they ruined reddit long before they got that far. They'll ruin this too. Downvotes are, after all, a "fuck you" and not a "you're fallacious". Disagreements are, after all, evidence that the other person is wrong/stupid/uncool, and not a difference in perspective.

The problem is people, and there is no computer science fix for that.


Doing the same technology for political ideas would be an interesting experiment of new form of people driven democracy.

Lets see hackers invent decentralized currency, hackers invent decentralized government democracy 2.0, people encrypt all their data and decentralize communications.

reboot


So people's level of input into political decisions will be directly tied to the amount of money they're willing to spend?

Sounds like it would pretty much legitimise the problems with the current system. Or maybe I'm missing some key part here?


There will never be a human power structure that avoids catering to the powerful, whether expressed with money or some other proxy. The most you can hope for is that the structures also make catering to the non-powerful worth doing.


So do you think a system based on buying votes on the blockchain would make catering to the non-powerful worth doing?

I don't.


>hackers invent decentralized government democracy 2.0

I think you forget how Proof of Work works. Candidates can just buy more and more mining power to put their opponents out of the race.


There is always so much disinformation in threads about blockchain tech. Do you have any idea how it works yourself? Mining is a means to an end, which is an incorruptible ledger. Voting is a social convention, not a coin. You wouldn't mine for votes. The way a voting system would work is that each voter would be given a single coin that is marked for eligibility to vote. Then they can send the coin to whatever address correlates with what they want to vote for. Since the coins are marked, you can't just mine for more coins to submit for more votes. Yes, there are problems with this system as well, but mining for votes is not one of them.


"there are problems with this system as well"

It sounds like the problem you're trading for is the one that Bitcoin solved in the first place: No need for a central database of users. How do you decentralize authentication of one-person-one vote? I'm not sure it's even possible


Certainly not easy! But, requiring periodic small group meetups, such that the groups have to have certain types of overlap, might kinda work?

Sort of forming a web of trust, but with negative incentives against signing for anyone trying to double vote?

Or maybe it is impossible.

It seems there would be a problem if the web of trust was fragmented, because for anyone not in a particular region of the wot, they would be unable to tell if it was a real wot, or only a fake one.

So any voting that occurred would have to only apply within a contiguous wot, and anyone in a different region would have to not have that vote count for them.

So, in a limited form like that, it could maybe be possible, but I don't know what it would be worth, because I don't know what sorts of things would be worth voting on, if the result of the vote can only apply to the identities used in the vote, because anyone could make another identity not part of the wot if they did not like the vote outcome. And a number of other similar problems.


The benefit of voting system I'm describing is to prevent fake or missing votes, and not to allow for anonymous voting. If you don't need 100% anonymous voting, then the blockchain works well. The voter registration used to distribute vote coins would ensure that coins go to the right people, but would not need to be made public, so there is still general privacy, but an individual could sign something with their private key to prove that the vote is theirs if they had to.


You could also send your coin to a 3rd party and have them vote on your behalf. This would allow for representative democracy, where individuals can either choose to vote directly on an issue or place their vote in the hands in the representative of their choice. In this system, you could directly choose your representative if you like on particular issues instead of being stuck with whomever is representing your geographical area.


> Voting is a social convention, not a coin.

notto take away from your main point, but money is a social convention, too....


This has nothing to do with money. The word coin here is used to represent a token in the ledger system. It is a transaction that is marked with cryptographically secure signature and wrapped in a SHA256 hash. It has nothing to do with social convention. A "coin" used in voting could be the minimum unit possibly represented by that ledger, meaning that value placed on the coin by society has no bearing on the system.


The DHT is good, although I wonder whether the routing is centralized through relying on DNS, or whether it's completely decentralized.

What is the point of the blockchain, though? Is it just to avoid a double spend problem? Proof of work is terrible now for new blockchains because people have rigs that can easily execute a 51%+ attack and destroy the network. It needs proof of stake, which becomes better the more participants there are. But proof of stake has a more centralized character not unlike a website with moderators controed by the initial host.

Isn't there a better way these days to prevent sybil attacks? All you need is to make it very expensive to make more than one account. How do you do that? You take what 99% of people have one of (such as their body, or their house, or their cellphone) and have them prove they own it. But that defeats anonymity, doesn't it?

Isn't there anything that people have only one of, can prove they own it, but doesn't reveal their identity?

Someone should implement this. THAT would be the real way to prevent sybil attacks.


The problem I see with this is that there's no moderation. Moderators are usually the difference between a good and a terrible subreddit.


1. Blockchain. 2. ??? 3. Profit.


Reading stories like this makes me always wonder what's wrong with NNTP? Can be decentralized and federated, just run your own server.


NNTPs exact problem is that it works.

It's like if you decided to start making CPUs out of silicon on a RISC architecture, that's boring because it likely works and is a simple way of solving the problem of computation in a fast way. Essentially any idiot with sufficient engineering know how could do this.

However, rather than buy a CPU for a few dollars and get down to the business of computing you could start making logic gates out of balls, water, or something wholly unsuited for computation, and then try to build a CPU on top of that. At that point you'd have something very impressive that solved no problem people actually had before that point. And everyone who bought a CPU would look and think, why make all that fuss to do slower what we had been doing for years before?


I was hoping it would use something inspired by NNTP, since "decentralized Reddit" is basically Usenet with voting.


I had an concept once for a decentralized reddit-like that used NNTP to distribute content and an inflationary cryptocurrency to store karma. The idea was that karma is only valuable while the thing that is generating it is relevant. If you wait long enough, your "karma-coins" will be, essentially, worthless. The deflation of your coins is dependent on your average net-worth over some period of time and the state of the global economy. (Maybe?)

I got busy with work, so I never got into the implementation stage, but it is on my backlog. Hopefully I get to it some day.


Do they say anywhere what mining scheme they're considering? It seems a weakness of this scheme would be the distribution of points. If they have a scaling difficulty similar to bitcoin, it seems possible that early adopters could wind up with vast quantities of points which late adopters would be starved for, allowing them to control what content is rewarded and published for a goodly while, impairing the initial attractiveness of the platform.


Sounds like a great idea, although I fear people may stockpile points in order to promote their own material later.


Why is that a problem? The person got a lot of points because people liked this persons contributions. People with more reputation should be allowed to post more.


The problem is promoting quality content people want to read. What if hackernews was just all viagra ads from spammers? Would you be fine with that? I sure wouldn't. That's the problem. Instead of quality content making it to the top or 'front page', people who pay the most can make it to the front page regardless of content quality.


Using the blockchain for something like this is a total waste of energy. Just run it on a single fast server. (or a small cluster)


Wouldn't that then make it centralized? I think the point is to make a reddit wherein censorship - beyond voting bombs - can not be enacted.


on reddit, censorship via central authority has always been my last concern. Censorship via groupthink is vastly more powerful and damaging.


Yes. Centralisation is just much more efficient in this case. (and maybe in all cases?)


Much for efficient, yes. But also much less decentralized, which is the point of this presentation.


But the goal isn't efficiency - it's permanence.


Suggesting the use of a central server for this is like suggesting the use of gas to power an electric car. The whole point is decentralization.


Sounds like hosting on maidsafe would be a secure option, once it's ready anyway.


Interesting, we're doing something similar with Open Publish, Bitstore, and a couple of DHT backed delivery systems, namely IPFS and BitTorrent.

Content is published by registering a SHA-1, BitTorrent InfoHash, an IPFS key and a URI pointing to the content on the Bitcoin blockchain.

https://github.com/blockai/openpublish#register-media-with-a...

Payments or tips towards that content are registered by creating a Bitcoin transaction that pays the person who registered the content by referencing the SHA-1.

https://github.com/blockai/openpublish#tipping-and-micropaym...

We've experimented with some Reddit-style ranking algorithms where we consider payments or tips as upvotes.

One big difference between what we're building and what this presentation is describing is where and how the content itself is stored.

We expect the content to be available on BitTorrent (and WebTorrent) as well as IPFS, both content-addressable data stores that use DHTs, but we also have a fallback to a URL for the content.

We made our own service called Bitstore, a content-addressable file hosting and distribution service that uses Bitcoin public key infrastructure for authentication and payment.

https://github.com/blockai/bitstore-client

So instead of having to run your own IPFS or BitTorrent node that's always serving up your content, you can pay a small fee in Bitcoin to have your file hosted... something like a coin operated S3.

Both Bitstore and Open Publish use the same form of authentication and permission, the public key nature of Bitcoin wallets. Users are identified by their public wallet addresses. This login mechanism has been implemented in a number of wallets that support the spec Common Wallet interface.

https://github.com/blockai/abstract-common-wallet

This opens up a number of really interesting interactions, such as something like "tip to comment", where a web service can check the Bitcoin blockchain to see if a self-identified wallet address did indeed tip the content it is attempting to comment on.

https://github.com/blockai/my-two-bits https://github.com/blockai/my-two-bits-client


What are the problems with existing services that you are attempting to solve?


In short, the entire nature of how information is published and monetized.

There are numerous problems with the current ad-sponsored publishing systems with web content, but some of the more interesting ideas we're looking at deal more with the professional publishing industries around photography, music and books.

We were very excited to read this report from the Berklee School of Music that outlined a system very similar to what we've been building!

In addition to the aforementioned benefits, a compre- hensive, accurate database of music rights ownership information would provide a platform for new technol- ogies to be applied in potentially game-changing ways. We encourage the investigation of the use of emerging crypto-currencies, such as Bitcoin, and their underlying technology, Blockchain, as new royalty-distribution mechanisms for the music industry.

...

A database of accurate rights ownership information, like the one we have proposed, could form the founda- tion of a similar cryptocurrency log. In addition to rights ownership information, the royalty split for each work, as determined by a mixture of statute and contracts, could be added to the database. Each time a payment is generated for a given work, the money would be auto- matically split according to the set terms, and each par- ty’s account would instantly reflect the additional reve- nue. For example, suppose a song is purchased from a digital music store, such as iTunes. After the store takes its cut, for ease of demonstration, we will hypothetically assume the revenue generated by the purchase comes to US$1.00. This money would be split between the two different works contained in the song, with a 9.1 cent mechanical royalty going to the musical work, and the remaining 90.9 cents going to the sound recording.

Next, if the contract between the publisher and songwriter specifies a 75/25 split of revenue from downloads, the publisher would receive 6.825 cents and the songwriter would receive 2.275 cents. With an identical split at the record label, The label would receive 68.175 cents, and the recording artist would get 22.725 cents. The block- chain network could also further divide this 22.725 cents between the members of a band, if applicable. This entire process would take place in less than one second, allowing all parties to access their money immediately after it is generated. Further, this payment system is fully trackable and would ensure that royalties are not held by third parties, such as labels and publish- ers, before being passed to the artist and songwriter. This would eliminate concerns about accidental or intentional underpayment of royalties. - Fair Music: Transparency and Money Flows in the Music Industry, p.27-28

https://www.berklee.edu/news/fair_music_report


Hey, thanks for the detailed and considered reply. So many of the proposals I see (including the slides in the main article) seem to be either technical plans without any obvious motivation (other than 'because we can'), or are people trying to use technology to magic away laws that they personally don't like. It makes me very cynical of it all at times :(


> people trying to use technology to magic away laws that they personally don't like.

Isn't this a good thing? If the law is unjust then technology will expose its weakness (copyright law for instance). If the law is just, it will be strengthened by being tested by technology and if it's applicable in new areas.

Law should not impede progress, progress should push law.


There's no magic that means good laws will get strengthened and bad laws will be weakened. The other way around is just as possible.


That's what makes you cynical?


Bitcoin is an interesting technology because it showed up after the web and mobile consumer technologies had already spread to most of the planet.

These days it takes literally hours to put up a web application that would have taken many months to build in the early nineties, if not more!

There still isn't an existing technology stack to build these kinds of consumer friendly applications that take advantage of the properties of a decentralized, single-source of truth, public access database like the Bitcoin blockchain.

That means that everyone is having to first figure out what the technology stack is, where the interfaces are for the various systems and modules that comprise it, and the best practices for shipping working products.

We've been trying our best to publish what we've been learning and trying to find nice interfaces for our systems and modules, and in the process we've come up with Common Blockchain, an API interface for querying the blockchain and propagating transactions, and Common Wallet, an API interface for signing messages, signing transactions, and signing authentication tokens.

https://github.com/blockai/abstract-common-blockchain https://github.com/blockai/abstract-common-wallet

We've got a really simple implementation of a Common Wallet based on bitcoinjs-lib that does all the basics that we use mainly for automated test suites, but it is a fully functional Bitcoin wallet.

https://github.com/blockai/test-common-wallet

We've also got a Common Wallet interface that talks to the Bitcoin-QT or bitcoind JSON-RPC, meaning you can use the standard core wallet with all of our supporting protocols. There's also a Common Blockchain implementation for the JSON-RPC.

https://github.com/blockai/rpc-common-blockchain https://github.com/blockai/rpc-common-wallet

And there's a number of unofficial Common Blockchain wrapper for third-party blockchain APIs like Blockcypher, Chain, and Blockchain.info. We now use a Common Blockchain interface based on Blockcypher in production.

The main motivation for Common Blockchain was that we were tired of having to change our interface after a series of blockchain APIs we were using either went out of business or pivoted.


I originally wrote this post as a response to Osmode, but it ended up swelling more than I'd intended. I fundamentally agree with his goals of supporting free discussion and suppressing self-censorship. However, I see several problems with this approach to achieving those goals.

The core problem with social-capital type schemes like Reddit (or indeed HN) is that they're very susceptible to bandwagoning. On Reddit the groupthink varies by community, but there's some mixing bowls and as a result the community does have an overall balance, despite having some short-term bandwagons. HN has a really strong bent towards the opinions of 20-something Silicon Valley startup coders without much counterbalance, and I know that I've certainly self-censored on certain topics that go against the grain here. Yes, in the words of Drew Carry, "everything is made up and the points don't matter", but then why is there still a counter in the corner of my screen?

Here, you're literally talking about putting a pricetag on dissenting opinions. If you go against the grain you're not just getting downvoted, each post actually costs you a certain amount of real money on servicing the blockchain. Conversely, circlejerking will get you a lot of kudos. That is - in and of itself - a strong social pressure that hampers the full spectrum of discourse. Much like the Bitcoin blockchain, it is fundamentally based on the assumption that no one group controls a non-trivial portion of the [social] network.

The same mechanisms that work against reprisal or spam also work against opinions that dissent from the common wisdom. It's vitally important for a strong discourse that sometimes-unpopular opinions be heard. Otherwise it's far too easy for the majority to carry themselves along (the Iraq war immediately springs to mind). I don't know how you counterbalance that against suppressing actual spam - because botnets and such mean that those groups will also have a great deal of capital from blockchain/network operation.

Some of the best communities on the web have actually been gated ones. Back in the day it cost $10 to activate an account on SomethingAwful. If you trolled, well, at least you're helping pay for the servers. If you leech on private trackers, you get banned and someone else takes a hit for inviting you. Gated NZB sites work in a similar way. I don't have a problem with such communities at all, but fundamentally they work on the basis of clearly defined social standards. On the flip side, Twitter and Tumblr have a very low level of discourse, because it's all about pithy soundbytes that get you retweeted. People leech from ThePirateBay all the time, because from their perspective, why not?

I don't see how this is different from "twitter, but using bitcoin". Something like FreeNet seems to accomplish the above goals much more effectively - popular opinions result in distributed re-caching, unpopular ones still get served if they have sufficient traffic, and really unpopular ones can be broadcasted by vigorous network participation and re-seeding.


You guys really need to let go of the blockchain trope. It's a hammer seeking nails.


The blockchain represents trust-less global concensus, the first time such a thing has occurred in history. From remittances to microtransactions to voting there are very few economic and political problems that the blockchain can say nothing about.

The current market capitalization of BitCoin is $3.7 billion. Did all that money just appear out of thin air because blockchains are worth nothing and solve no problems?


The market capitalization of Bitcoin has NOTHING to do with the value of its technical solutions.

A low tech solution like the good old check (ink on a piece of paper) can be worth more than all Bitcoins.


Really? Nothing? If the technical solutions were worth nothing wouldn't the value tend towards zero? Surely sustaining a market cap in the billions says something about the economic value it represents.


> If the technical solutions were worth nothing wouldn't the value tend towards zero?

Nonsense. The value of Bitcoins is not the value of the algorithms behind it. People agree to trade Bitcoin for that amount of money and that's it. Market laws.

Just like the value of cash is not determined by the technical solution behind it (essentially colored inks on a piece of paper).


> Just like the value of cash is not determined by the technical solution behind it (essentially colored inks on a piece of paper).

The value of paper money is actually pretty intimately entangled with the quality of its anti-counterfeiting technology. If anybody could just print viable currency on their home printers, cash would be useless.


The counterfeit rate of UK pound coins is 2.5%, yet you can easily exchange ten of them for a £10 note. If what you state was true, people would not be willing to give as much as £1 per coin.

http://www.royalmint.com/discover/uk-coins/counterfeit-one-p...


That's very interesting and surprising (I would have guessed much less than 2.5%), but I don't see how it refutes my point that any currency's value is related to how easily it can be counterfeited. There's probably a threshold or two involved, where the convenience of having simple exchange rates between forms of the same currency compensates for losses to counterfeiting as long as the counterfeit rate is low enough.

I don't think you're actually arguing that I could build a currency that scales beyond a tribal scope out of something that's trivial to copy, but that's the point I'm trying to make. If it's too easy to cheat, people will stop trusting the currency and will use something else; therefore the technology behind the currency does affect its value.


Yeah, I do get your point, I think though that the value of currency is more to do with trusting the backers/issuers of the money, rather than any direct relation to counterfeiting. If counterfeiting becomes too rife, then that will start to damage the trust of the money issuers. The relationship is complicated though.

The UK £1 counterfeit rate is almost unbelievably high, but the key point is that individuals aren't really affected by it. The coins are all 'good enough' that you are unlikely to ever have any rejected by a shop, so the end result is no-one cares about it. (Incidentally, it's actually harmful to check your own cash for counterfeits, since spending counterfeit money is a crime, but ignorance is an accepted defence.)

(I don't know where the buck stops. Do banks check for counterfeit coins and reject them from shop's cash deposits? I'm absolutely not trying to say that counterfeiting coins is a victimless crime, just wondering whether everyone shares the cost or whether it eventually catches up with one unlucky party)


So all market valuations exist in a vacuum, and say absolutely nothing about how much something is actually worth? And how do you think this economic theory applies to the stock market or commodities markets? Are shares in companies and commodities inherently worth nothing but the price people agree to pay for them? Don't they say something about their collective belief in that asset's future?

Market valuations can become decoupled from intrinsic value, but that doesn't mean the intrinsic value is zero. In the long term if something really repesents zero value its market valuation will approach that.


Bitcoin is a cryptocurrency. Bitcoin is also a technology. You're conflating the two. You could have a cryptocurrency without a block chain and you can have a block chain that has nothing to do with cryptocurrency.


They are very much linked to one another. If BitCoin didn't offer anything novel over and above other media of exchange, like fiat currency, its value would approach zero. Its differentiating quality is the blockchain and peer-to-peer distributed concensus.

You could have a cryptocurrency without a block chain

Perhaps, but then you'd need to solve the problem of trust-less peer-to-peer Byzantine concensus a different away, using a different mechanism. And that's exactly why the blockchain is novel.


Yes.

What something is worth depends entirely on its context and available substitutes (aka. supply/demand), for example a generator isn't worth that much under normal conditions as people have the grid as a substitute.

After a hurricane or something else that removes the grid as a substitute the generator is worth substantially more.

Ask yourself how much you think a lion would pay for your gold ring, house, or anything else you think has intrinsic value.

The nature of trade incentivizes individuals to find resources that are less valued by one person and more valued by another. For example starbucks finds coffee beans from farmers who don't find them terribly valuable, and sells them back to consumers who find them much more valuable, especially in conjunction with their value adds. Coffee beans are worth different amounts to different people, only when we make a transaction do we start to discover price.


> People agree to trade Bitcoin for that amount of money and that's it.

Yes, however Bitcoin is still not used very much for traditional goods-and-services trade. Many people are buying Bitcoin as an investment in the ecosystem. They see the value in Bitcoin technology, and believe that it is promising enough to increase in value.


There are countless altcoins with the same or more advanced technology than Bitcoin, and they have tiny marketcaps. So the marketcap is provably unrelated to the technology.


Bitcoin is horrible for microtransactions. I don't know if there's another blockchain besides Bitcoin's that's better for microtransacations, but Bitcoin ain't it.

The transaction bandwidth for Bitcoin is laughably small, the ability for bandwidth to be added is limited (see how long current block size debate has gone on), and transaction fees required to get placed into a block add substantial fixed fees that represent a large % fee for micro transactions.

If a Bitcoin microtransaction service ever hit it big, it would immediately cripple the entire network.


I didn't say block chains are worth nothing. Just because something solves one problem does not mean it solves all problems.


But when something is a decentralized immutable ledger and global consensus, it tends to solve problems of decentralized immutable ledgers and global consensus.


>decentralized immutable ledger and global consensus

These aren't problems, they're potential solutions to problems. Bitcoin and Blockchains are solutions to specific problems in currency and trust.


They are the structure of of decentralized systems. A comment system can be seen as (and is possibly already implemented as) an immutable ledger of transactions - adding comments, voting, edits etc.

So decentralizing those things that can be represented at their core as a ledger of transactions is very much a problem which blockchains solve.


> The current market capitalization of BitCoin is $3.7 billion.

By definition only publicly traded companies have a market capitalization. BitCoin is not a publicly traded company and therefore does not have one.


BitCoin is $3.7 billion.

That's about 1/14th of an Uber. It's literally nothing on a global scale.

The value of all "bitcoin companies" is larger than the value of all bitcoins themselves.

there are very few economic and political problems that the blockchain can say nothing about.

That's just crazy talk.


Yes, $3.7 billion is less than some things are worth, but it is more than most things are worth.

The valuation of Uber means people believe Uber has future growth potential. Similarly, the high valuation of BitCoin companies means people believe BitCoin has future growth potential. Rightly or wrongly, I guess the future will tell in both cases. Obviously I think rightly.

That's just crazy talk.

Ok.


My biggest issue with all the investment in blockchain-derived technologies that aren't cryptocurrency related is that it's hard to apply proof-of-work systems to real world problems. How do you incentivize people for mining blocks? How do you ensure you have enough distributed computing power, so that a single actor can't take over the entire network? The company using a blockchain to track diamonds is a good example. Do I get diamonds for mining blocks? Then what's the point? Companies like Everledger claiming to run a "private blockchain" are only using the word as marketing bullshit, because that effectively becomes a centralized database/linked list.


Crpytocurrency/Money isn't the only way to incentive people. If a group of decentralized entities have a common interest that could be solved with a blockchain-type technology, it might make sense for them to throw computing power at it because it still creates value, even without a currency.


For the blockchain/proof-of-work concept to truly work, everyone should be offered some sort of incentive to participate in the network. It's the best way to ensure that a single actor can't gather enough computing power to take control of more than 50% of the network.


You bring up a compelling point and the fact that you're being downmodded is kind of sad.


[flagged]


Please don't do this here.


what, blerkchain terkonology? I brought you some blerkchain terkonology to put in your blerkchain terkonology.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: