-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
116 lines (106 loc) · 6.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>commonware</title>
<meta name="description" content="">
<meta name="keywords" content="commonware, open source, common goods, software, internet, ownership, trust, blockchain, decentralization, crypto">
<meta property="og:url" content="https://commonware.xyz" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="commonware" />
<meta property="og:title" content="commonware" />
<meta property="og:description" content="" />
<meta property="og:image" content="https://commonware.xyz/card.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="commonware.xyz" />
<meta property="twitter:url" content="https://commonware.xyz" />
<meta property="twitter:title" content="commonware" />
<meta property="twitter:description" content="" />
<meta property="twitter:image" content="https://commonware.xyz/card.png" />
<meta property="twitter:site" content="@commonwarexyz" />
<meta property="twitter:creator" content="@commonwarexyz" />
<meta property="twitter:creator:id" content="@commonwarexyz" />
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="logo-placeholder">
<div class="logo-line">
<span class="edge-logo-symbol">+</span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol">~</span>
<span class="edge-logo-symbol">*</span>
</div>
<div class="logo-line">
<span class="vertical-logo-symbol">|</span>
<span class="logo-text"> commonware </span>
<span class="vertical-logo-symbol"> </span>
</div>
<div class="logo-line">
<span class="edge-logo-symbol">*</span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">~</span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">+</span>
<span class="horizontal-logo-symbol"> </span>
<span class="horizontal-logo-symbol">-</span>
<span class="horizontal-logo-symbol">*</span>
<span class="horizontal-logo-symbol">-</span>
<span class="edge-logo-symbol">+</span>
</div>
</div>
<div class="content">
<h2>Primitives</h2>
<h3><a href="https://docs.rs/commonware-cryptography">cryptography</a></h3>
<p>Generate keys, sign arbitrary messages, and deterministically verify signatures.</p>
<h3><a href="https://docs.rs/commonware-p2p">p2p</a></h3>
<p>Communicate with authenticated peers over encrypted connections.</p>
<h3><a href="https://docs.rs/commonware-runtime">runtime</a></h3>
<p>Execute asynchronous tasks with a configurable scheduler.</p>
<h3><a href="https://docs.rs/commonware-storage">storage</a></h3>
<p>Persist and retrieve data from an abstract store.</p>
<h2>Blogs</h2>
<h3><a href="./blogs/commonware-runtime.html">commonware-runtime: The Foundation for Reliable and Performant Consensus</a></h3>
<div class="blog-meta">
<div class="author">By <a href="https://x.com/_patrickogrady">Patrick O'Grady</a></div>
<div class="date">September 24, 2024</div>
</div>
<p>In blockchain engineering, there are few moments more stressful than the production release of a new mechanism (whether a novel consensus optimization or a tweak to peer discovery).</p>
<h3><a href="./blogs/commonware-cryptography.html">commonware-cryptography: Unlocking Seeds, Links, and Views</a></h3>
<div class="blog-meta">
<div class="author">By <a href="https://x.com/_patrickogrady">Patrick O'Grady</a></div>
<div class="date">August 28, 2024</div>
</div>
<p>When I chat with a developer about launching their own onchain application (as a specialized blockchain), the same questions always come up.</p>
<h3><a href="./blogs/introducing-commonware.html">Introducing Commonware</a></h3>
<div class="blog-meta">
<div class="author">By <a href="https://x.com/_patrickogrady">Patrick O'Grady</a></div>
<div class="date">August 8, 2024</div>
</div>
<p>Like many of you, I started working in the crypto space because I believe the internet will be a better place if (a lot) more of it is onchain.</p>
<h2>Examples</h2>
<h3><a href="https://docs.rs/commonware-chat">chat</a></h3>
<p>Send encrypted messages to a group of friends.</p>
<h3><a href="https://docs.rs/commonware-vrf">vrf</a></h3>
<p>Generate bias-resistant randomness with untrusted contributors.</p>
</div>
<div id="footer-placeholder"></div>
<script src="script.js"></script>
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "07159b86f75b4af18e54dd0cda2fb4a7"}'></script>
</body>
</html>