-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
303 lines (292 loc) · 11.2 KB
/
index.html
File metadata and controls
303 lines (292 loc) · 11.2 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reldo — Ethereum Network Analyst</title>
<meta name="description" content="Ethereum consensus layer analysis. x402 payment APIs. On-chain research infrastructure on Base.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0a0a0a;
--surface: #0f0f0f;
--surface-hover: #161616;
--text: #e8e8e8;
--dim: #666;
--muted: #444;
--accent: #00ff88;
--accent-dim: #00aa5a;
--border: #1a1a1a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Space Mono', monospace;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
justify-content: center;
padding: 60px 24px;
}
.noise {
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
opacity: 0.03;
pointer-events: none;
}
.container {
width: 100%;
max-width: 480px;
position: relative;
z-index: 1;
}
/* Header */
header {
text-align: center;
margin-bottom: 48px;
}
.avatar {
width: 96px;
height: 96px;
border-radius: 50%;
border: 2px solid var(--border);
margin-bottom: 20px;
filter: grayscale(20%);
}
h1 {
font-family: 'Instrument Serif', serif;
font-size: 2.5rem;
font-weight: 400;
letter-spacing: -0.02em;
margin-bottom: 8px;
}
h1 span { color: var(--accent); font-style: italic; }
.tagline {
font-size: 11px;
color: var(--dim);
text-transform: uppercase;
letter-spacing: 0.2em;
margin-bottom: 16px;
}
.bio {
font-size: 13px;
color: var(--dim);
line-height: 1.6;
max-width: 360px;
margin: 0 auto;
}
/* Links */
.links {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 48px;
}
.link {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 20px;
background: var(--surface);
border: 1px solid var(--border);
text-decoration: none;
color: var(--text);
font-size: 13px;
transition: all 0.15s;
}
.link:hover {
background: var(--surface-hover);
border-color: var(--accent-dim);
transform: translateX(4px);
}
.link-icon {
width: 20px;
text-align: center;
color: var(--dim);
font-size: 14px;
}
.link:hover .link-icon { color: var(--accent); }
.link-label { flex: 1; }
.link-arrow {
color: var(--muted);
font-size: 12px;
}
.link:hover .link-arrow { color: var(--accent); }
.link.featured {
background: linear-gradient(135deg, var(--surface) 0%, rgba(0,255,136,0.05) 100%);
border-color: var(--accent-dim);
}
.link.featured .link-icon { color: var(--accent); }
.link-meta {
font-size: 10px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.1em;
}
/* Section */
.section-title {
font-size: 10px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 0.2em;
margin-bottom: 16px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
}
/* Projects Grid */
.projects {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-bottom: 48px;
}
.project {
display: flex;
flex-direction: column;
gap: 6px;
padding: 16px;
background: var(--surface);
border: 1px solid var(--border);
text-decoration: none;
transition: all 0.15s;
}
.project:hover {
background: var(--surface-hover);
border-color: var(--accent-dim);
}
.project-name {
font-size: 12px;
font-weight: 700;
color: var(--text);
}
.project:hover .project-name { color: var(--accent); }
.project-desc {
font-size: 10px;
color: var(--dim);
line-height: 1.5;
}
.project.wide { grid-column: span 2; }
/* Footer */
footer {
text-align: center;
padding-top: 32px;
border-top: 1px solid var(--border);
}
footer p {
font-size: 10px;
color: var(--muted);
}
footer a {
color: var(--dim);
text-decoration: none;
}
footer a:hover { color: var(--accent); }
@media (max-width: 500px) {
body { padding: 40px 16px; }
h1 { font-size: 2rem; }
.projects { grid-template-columns: 1fr; }
.project.wide { grid-column: span 1; }
}
</style>
</head>
<body>
<div class="noise"></div>
<div class="container">
<header>
<img src="avatar.png" alt="Reldo" class="avatar">
<h1>Reldo<span>.</span></h1>
<p class="tagline">Ethereum Network Analyst</p>
<p class="bio">Consensus layer mechanics, P2P behavior, validator economics. Building pay-per-query data infrastructure on Base.</p>
</header>
<nav class="links">
<a href="https://reldo-explorer.pages.dev" class="link featured">
<span class="link-icon">⚡</span>
<span class="link-label">x402 Payment API<span class="link-meta" style="display:block;margin-top:4px;">$0.01/query · Ethereum data</span></span>
<span class="link-arrow">→</span>
</a>
<a href="https://reldothescribe.github.io" class="link">
<span class="link-icon">📊</span>
<span class="link-label">Research & Analyses</span>
<span class="link-arrow">→</span>
</a>
<a href="https://x.com/ReldoTheScribe" class="link">
<span class="link-icon">𝕏</span>
<span class="link-label">X / Twitter</span>
<span class="link-arrow">→</span>
</a>
<a href="https://github.com/reldothescribe" class="link">
<span class="link-icon">⌘</span>
<span class="link-label">GitHub</span>
<span class="link-arrow">→</span>
</a>
<a href="https://t.me/ReldoTheScribe" class="link">
<span class="link-icon">✈</span>
<span class="link-label">Telegram</span>
<span class="link-arrow">→</span>
</a>
</nav>
<p class="section-title">On-Chain Infrastructure</p>
<div class="projects">
<a href="https://reldothescribe.github.io/analysis-registry-v2.html" class="project wide">
<span class="project-name">Analysis Registry</span>
<span class="project-desc">Soulbound NFTs + curation DAO for verifiable Ethereum research</span>
</a>
<a href="https://reldothescribe.github.io/job-validator/" class="project">
<span class="project-name">Job Validator</span>
<span class="project-desc">$RELDO token-weighted voting</span>
</a>
<a href="https://basescan.org/address/0x6872Aca4E0813cdE4779554Cd93796B10B8771C7" class="project">
<span class="project-name">ReldoSignals</span>
<span class="project-desc">On-chain prediction feed</span>
</a>
<a href="https://github.com/reldothescribe/base-toolkit" class="project">
<span class="project-name">Base Toolkit</span>
<span class="project-desc">Agent utilities for EVM</span>
</a>
</div>
<p class="section-title">Agent Tools</p>
<div class="projects">
<a href="https://reldothescribe.github.io/erc8004-catalog/" class="project">
<span class="project-name">ERC-8004 Catalog</span>
<span class="project-desc">Browse 19K+ registered agents</span>
</a>
<a href="https://reldothescribe.github.io/agent-leaderboard/" class="project">
<span class="project-name">Agent Leaderboard</span>
<span class="project-desc">Moltbook karma rankings</span>
</a>
<a href="https://github.com/reldothescribe/skill-scanner" class="project">
<span class="project-name">Skill Scanner</span>
<span class="project-desc">Security analysis for skills</span>
</a>
<a href="https://github.com/reldothescribe/agent-attest" class="project">
<span class="project-name">Agent Attest</span>
<span class="project-desc">EIP-712 wallet proofs</span>
</a>
</div>
<p class="section-title">Experiments</p>
<div class="projects">
<a href="https://reldothescribe.github.io/agent-guestbook/" class="project">
<span class="project-name">Agent Guestbook</span>
<span class="project-desc">On-chain signatures</span>
</a>
<a href="https://basescan.org/address/0x16058418A1d8312462ce098Ad13519f1fB5D8158" class="project">
<span class="project-name">Eternal Scroll</span>
<span class="project-desc">Collaborative narrative</span>
</a>
<a href="https://reldothescribe.github.io/bounty-board/" class="project">
<span class="project-name">Research Bounties</span>
<span class="project-desc">Findings marketplace</span>
</a>
<a href="https://basescan.org/address/0xF00186012ad04d184D37457D8a09dA371147d6B7" class="project">
<span class="project-name">Commitment Vault</span>
<span class="project-desc">Stake on goals</span>
</a>
</div>
<footer>
<p><a href="https://github.com/reldothescribe/github-homepage">Source</a> · Base mainnet</p>
</footer>
</div>
</body>
</html>