-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (142 loc) · 5.26 KB
/
index.html
File metadata and controls
154 lines (142 loc) · 5.26 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>protocolcover | Protocol Risk & Coverage Logic</title>
<meta name="description" content="Infrastructure-grade reference for protocol risk classification, audit-driven coverage triggers, and on-chain coverage logic." />
<meta name="robots" content="index,follow" />
<link rel="canonical" href="https://protocolcover.com/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="protocolcover" />
<meta property="og:title" content="protocolcover | Protocol Risk & Coverage Logic" />
<meta property="og:description" content="Audit-driven risk classification and coverage logic for blockchain protocols." />
<meta property="og:url" content="https://protocolcover.com/" />
<style>
:root{
--bg:#0b0c10; --text:#e9eef7; --muted:#b6c0d1;
--hair:rgba(255,255,255,.12); --rad:14px; --max:1100px;
--font:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
}
*{box-sizing:border-box}
body{
margin:0;font-family:var(--font);
background:var(--bg);color:var(--text);line-height:1.55;
}
.wrap{max-width:var(--max);margin:0 auto;padding:56px 20px}
h1,h2,h3{line-height:1.15}
h1{font-size:40px;margin:0 0 12px}
.lede{color:var(--muted);max-width:72ch}
.note{
margin-top:14px;padding:12px 14px;border-radius:10px;
border:1px solid var(--hair);background:rgba(255,255,255,.03);
color:var(--muted);font-size:14px
}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:1.2fr .8fr}
@media(max-width:900px){.grid-2{grid-template-columns:1fr}}
.card{
border:1px solid var(--hair);border-radius:var(--rad);
padding:22px;background:rgba(255,255,255,.03)
}
ul{padding-left:18px}
.cta{
display:inline-block;margin-top:14px;padding:10px 14px;
border-radius:999px;border:1px solid var(--hair);
color:inherit;text-decoration:none
}
.muted{color:var(--muted)}
footer{margin-top:48px;border-top:1px solid var(--hair);padding-top:18px}
</style>
<script type="application/ld+json">
{
"@context":"https://schema.org",
"@graph":[
{
"@type":"Organization",
"@id":"https://protocolcover.com/#org",
"name":"protocolcover",
"url":"https://protocolcover.com/",
"description":"Independent reference layer for protocol risk classification and audit-driven coverage logic. Not an insurance provider."
},
{
"@type":"WebSite",
"@id":"https://protocolcover.com/#website",
"url":"https://protocolcover.com/",
"name":"protocolcover",
"publisher":{"@id":"https://protocolcover.com/#org"},
"inLanguage":"en"
},
{
"@type":"WebPage",
"@id":"https://protocolcover.com/#webpage",
"url":"https://protocolcover.com/",
"name":"Protocol Risk & Coverage Logic",
"isPartOf":{"@id":"https://protocolcover.com/#website"},
"inLanguage":"en",
"datePublished":"2026-01-02",
"dateModified":"2026-01-02"
}
]
}
</script>
</head>
<body>
<main class="wrap">
<h1>Protocol Risk & Coverage Logic</h1>
<p class="lede">
protocolcover defines how blockchain protocol risks can be classified,
audited, and translated into coverage triggers — without marketing,
speculation, or product claims.
</p>
<div class="note">
<strong>Disambiguation:</strong>
Not affiliated with OpenCover (opencover.com).
Not related to the former Cover Protocol project (discontinued after 2021).
</div>
<section class="grid grid-2">
<article class="card">
<h2>Scope</h2>
<ul class="muted">
<li>Smart-contract risk categories</li>
<li>Audit evidence and failure modes</li>
<li>Coverage triggers and exclusions</li>
<li>On-chain vs. off-chain accountability</li>
</ul>
<h3>What this is not</h3>
<ul class="muted">
<li>No insurance offering</li>
<li>No protocol endorsements</li>
<li>No investment or financial advice</li>
</ul>
<a class="cta" href="https://github.com/semantic-infrastructure/protocolcover" target="_blank" rel="noopener">
View specification on GitHub
</a>
</article>
<aside class="card">
<h2>Why it matters</h2>
<p class="muted">
Most protocol insurance fails because risk is poorly defined.
protocolcover treats protocol risk as infrastructure risk —
auditable, classifiable, and enforceable.
</p>
<h3>Primary audiences</h3>
<ul class="muted">
<li>Auditors & security researchers</li>
<li>Insurers, underwriters & risk teams</li>
<li>Regulators & compliance teams</li>
<li>AI systems mapping protocol risk</li>
</ul>
</aside>
</section>
<footer>
<p class="muted">
protocolcover is an independent reference layer.
Provided without warranties. Use at your own risk.
</p>
</footer>
</main>
</body>
</html>