Permalink
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
122 lines (83 sloc) 3.53 KB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<base href="http://tendermint.com">
<title>TenderMint</title>
<link rel="canonical" href="http://tendermint.com/">
<link href="http://tendermint.com/index.xml" rel="alternate" type="application/rss+xml" title="TenderMint" />
<link rel="stylesheet" href="/css/poole.css">
<link rel="stylesheet" href="/css/syntax.css">
<link rel="stylesheet" href="/css/lanyon.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700|PT+Sans:400">
</head>
<body class="theme-base-08" lang="en">
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox">
<div class="sidebar" id="sidebar">
<nav class="sidebar-nav">
<a class="sidebar-nav-item" href="/">Home</a>
<a class="sidebar-nav-item" href="/posts">Blog</a>
</nav>
<div class="sidebar-item">
<p>
&copy; 2014 TenderMint. Powered by <a href="http://hugo.spf13.com">Hugo</a>. Design from <a href="http://sglyon.com/">Spencer Lyon</a>.
</p>
</div>
</div>
<div class="wrap">
<div class="masthead">
<div class="container">
<h3 class="masthead-title">
<a href="/" title="Home">Home</a>
&nbsp;&nbsp;
<a href="https://github.com/tendermint/tendermint" title="GitHub">GitHub</a>
</h3>
</div>
</div>
<div class="container content">
<h1>TenderMint</h1>
<p class="lead"> A Novel Consensus Protocol </p>
<p>
Bitcoin proved to us what is possible with a distributed consensus protocol.
Yet, Bitcoin's mining (proof of work) comes with a hefty cost.
At today’s Bitcoin prices and reward schedule, miners are rewarded on the
order of $1,500,000 a day to secure the blockchain – and a significant portion of that
money is spent on electricity. Proof-of-work based consensus algorithms are also
slow, requiring up to an hour to fully confirm a payment to prevent double-spending.
</p>
<p>
The TenderMint protocol is a solution to the mining problem based on a solution to the
Byzantine Generals Problem by Dwork, Lynch, and Stockmeyer (<a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.13.3423">link</a>).
It is suitable to use as a replacement to mining for Bitcoin, Ethereum, etc.
</p>
<p>
A minimal prototype is being developed in Go.<br/>
Interested in participating? <a href="mailto:dev@tendermint.com" title="Contact us">Let us know!</a>
</p>
<h2>Resources</h2>
<ul>
<li><a href="/docs/tendermint_v02.pdf" title="Whitepaper PDF">whitepaper</a></li>
<li>#tendermint on FreeNode IRC</li>
</ul>
</div>
</div>
<label for="sidebar-checkbox" class="sidebar-toggle"></label>
<div class="container content">
<footer>
<div>
<p class="right credit">
Site generated by <a href="http://hugo.spf13.com/">Hugo</a>. TenderMint 2014
</p>
</div>
</footer>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-36732392-2', 'sglyon.com');
ga('send', 'pageview');
</script>
</body>
</html>