-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch.html
More file actions
403 lines (358 loc) · 19.2 KB
/
research.html
File metadata and controls
403 lines (358 loc) · 19.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Research Center - Bitcoin Singularity AI</title>
<meta name="description" content="Quarterly reports on the State of AI Agent Economics. Transaction data, infrastructure growth, and competitive analysis with academic rigor.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
<script defer data-domain="bitcoinsingularity.ai" src="https://plausible.io/js/script.js"></script>
<style>
:root {
--bitcoin-orange: #F7931A;
--bg-primary: #0a0a0f;
--bg-secondary: #12121a;
--bg-tertiary: #1a1a25;
--text-primary: #e8e8ed;
--text-secondary: #8888a0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'IBM Plex Sans', -apple-system, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
font-family: 'IBM Plex Sans', -apple-system, sans-serif;
line-height: 1.4;
overflow-x: hidden;
}
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 50%, rgba(247, 147, 26, 0.02) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(74, 158, 255, 0.03) 0%, transparent 50%);
z-index: -1;
}
header {
height: 50px;
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 15, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(247, 147, 26, 0.2);
z-index: 1000;
padding: 0;
}
nav {
height: 50px;
max-width: 1400px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 0.85rem;
font-weight: 700;
color: var(--text-primary);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo::before {
content: '₿';
font-size: 0.9rem;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--text-primary);
}
main {
margin-top: 50px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 1.5rem 4rem;
}
.page-header {
padding: 2rem 0 1rem 0;
text-align: center;
margin-bottom: 0.5rem;
}
.page-header h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.page-header p {
font-size: 0.85rem;
color: var(--text-primary);
}
.content-section {
background: var(--bg-secondary);
border: 1px solid var(--border-card);
border-radius: 8px;
padding: 16px 20px;
margin-bottom: 16px;
}
.content-section h2 {
font-size: 16px;
margin-bottom: 0.75rem;
color: var(--text-primary);
text-transform: uppercase;
letter-spacing: 0.08em;
}
.content-section p {
font-size: 0.85rem;
color: var(--text-primary);
line-height: 1.5;
margin-bottom: 0.5rem;
}
.placeholder {
text-align: center;
padding: 3rem 2rem;
background: var(--bg-secondary);
border-radius: 1rem;
margin-bottom: 3rem;
background: rgba(247, 147, 26, 0.05);
border-radius: 8px;
margin: 1.5rem 0;
}
.placeholder h3 {
font-size: 0.9rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
}
.placeholder p {
color: var(--text-primary);
font-size: 0.9rem;
}
footer {
margin-top: 6rem;
padding: 1rem 0;
border-top: 1px solid rgba(247, 147, 26, 0.2);
text-align: center;
color: var(--text-primary);
}
footer a {
color: var(--text-primary);
text-decoration: none;
}
@media (max-width: 768px) {
.page-header h1 {
font-size: 2rem;
font-size: 2rem;
}
.nav-links {
gap: 1rem;
font-size: 0.85rem;
}
}
</style>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-E7QS7E2R8Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag("js", new Date());
gtag("config", "G-E7QS7E2R8Y");
</script>
</head>
<body>
<header>
<nav>
<a href="/" class="logo">Bitcoin Singularity</a>
<button class="hamburger" id="hamburger" aria-label="Menu"><span></span><span></span><span></span></button>
<ul class="nav-links" id="nav-links">
<li><a href="/research" class="active">Research</a></li>
<li><a href="/evidence">Evidence Tracker</a></li>
<li><a href="/tools">Tools</a></li>
<li><a href="/knowledge">Knowledge Base</a></li>
<li><a href="/chat">Ask Maxi</a></li>
<li><a href="/btc-20m-countdown.html" class="countdown-link">₿ 20M Party</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
<script>
document.getElementById('hamburger').addEventListener('click', function() {
document.getElementById('nav-links').classList.toggle('open');
});
</script>
</header>
<main>
<div class="page-header">
<h1>Research Center</h1>
<p>Quarterly reports on the State of AI Agent Economics</p>
</div>
<!-- Newsletter Signup - Prominent -->
<div style="max-width: 600px; margin: 0 auto 1rem; padding: 1rem; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 8px; text-align: center;">
<h3 style="color: var(--text-primary); margin-bottom: 0.5rem; font-size: 0.85rem;">Get Research Updates</h3>
<p style="color: var(--text-primary); margin-bottom: 0.75rem;">Be notified when new quarterly reports and analysis are published</p>
<form action="https://app.kit.com/forms/9092630/subscriptions" method="POST" style="display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;">
<input type="email" name="email" placeholder="Your email address" required style="flex: 1; min-width: 250px; padding: 0.6rem 1.2rem; background: var(--bg-primary); border: 1px solid var(--bg-tertiary); border-radius: 6px; color: var(--text-primary); font-size: 0.9rem;">
<button type="submit" style="padding: 0.6rem 1.8rem; background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); border-radius: 6px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease;">Subscribe to Research Updates</button>
</form>
</div>
<!-- Live Data Dashboard -->
<div class="content-section" style="background: var(--bg-secondary); border: 1px solid var(--border-subtle);">
<h2>Live Network Metrics</h2>
<p style="margin-bottom: 0.5rem; font-style: italic;">Real-time data tracking the AI-Bitcoin convergence</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem;">
<!-- Lightning Network Card -->
<div style="background: var(--bg-primary); padding: 2rem; border-radius: 10px; border-left: 2px solid var(--border-card);">
<div style="font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--text-primary); margin-bottom: 0.5rem;">LIGHTNING NETWORK</div>
<div style="font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem;">5,464</div>
<div style="color: var(--text-primary); margin-bottom: 0.5rem;">Active Nodes <span style="color: #00c853;">(+1.34%)</span></div>
<div style="display: flex; gap: 1.5rem; font-size: 0.85rem;">
<div>
<div style="color: var(--text-primary); font-weight: 600;">16,257</div>
<div style="color: var(--text-primary); font-size: 0.85rem;">Channels <span style="color: #00c853;">(+2.38%)</span></div>
</div>
<div>
<div style="color: var(--text-primary); font-weight: 600;">2,591 BTC</div>
<div style="color: var(--text-primary); font-size: 0.85rem;">Capacity <span style="color: #ff1744;">(-0.68%)</span></div>
</div>
</div>
</div>
<!-- ERC-8004 Card -->
<div style="background: var(--bg-primary); padding: 2rem; border-radius: 10px; border-left: 2px solid var(--border-card);">
<div style="font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--text-primary); margin-bottom: 0.5rem;">ERC-8004 REGISTRY</div>
<div style="font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem;">21,500+</div>
<div style="color: var(--text-primary);">AI Agents Registered</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--bg-tertiary); color: var(--text-primary); font-size: 0.9rem;">
On-chain identity & reputation standard on Ethereum mainnet
</div>
</div>
<!-- x402 Card -->
<div style="background: var(--bg-primary); padding: 2rem; border-radius: 10px; border-left: 2px solid var(--border-card);">
<div style="font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--text-primary); margin-bottom: 0.5rem;">x402 PROTOCOL</div>
<div style="font-size: 0.85rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem;">50M+</div>
<div style="color: var(--text-primary);">Transactions Processed</div>
<div style="margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--bg-tertiary); color: var(--text-primary); font-size: 0.9rem;">
Coinbase Agentic Wallet payment standard (USDC-based)
</div>
</div>
</div>
<div style="margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(247, 147, 26, 0.3); text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; color: var(--text-primary);">
Last updated: March 2, 2026
</div>
</div>
<div class="content-section">
<h2>About This Research</h2>
<p>
This research center publishes quarterly reports tracking the AI-Bitcoin convergence through real data,
transparent methodology, and honest competitive analysis.
</p>
<p>
Each report includes: transaction volume data (Lightning, L402, x402), case studies of AI agents using
Bitcoin and competing payment rails, infrastructure growth metrics, market analysis, and forward-looking predictions.
</p>
<p>
<strong>Methodology:</strong> We don't cherry-pick data. If x402/USDC is outpacing L402/Bitcoin in adoption,
we document that honestly and analyze why. Intellectual honesty is the brand.
</p>
</div>
<!-- Featured Article -->
<div class="content-section" style="background: var(--bg-secondary); border: 1px solid var(--border-subtle);">
<div style="display: inline-block; background: var(--bitcoin-orange); color: var(--bg-primary); padding: 0.4rem 1rem; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem;">
LATEST RESEARCH
</div>
<h2 style="font-size: 0.85rem; margin-bottom: 0.5rem;">State of Play: The AI Agent Money Layer — February 2026</h2>
<p style="font-size: 1rem;
color: var(--text-secondary);
margin-bottom: 1.25rem;
line-height: 1.7;">
First comprehensive baseline report on L402 vs x402: Which payment rail will AI agents choose? Tracking Bitcoin Lightning vs USDC stablecoins for machine intelligence.
</p>
<div style="display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.5rem; font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: var(--text-primary);">
<span>Published: Feb 15, 2026</span>
<span>By Maxi</span>
<span>Advisor: Boyd Cohen, PhD</span>
</div>
<div style="background: var(--bg-primary); padding: 2rem; border-radius: 8px; margin-bottom: 0.5rem;">
<h3 style="color: var(--text-primary); margin-bottom: 0.5rem; font-size: 0.9rem;">Key Findings</h3>
<ul style="list-style: none; padding: 0; margin: 0;">
<li style="padding: 1rem 0; border-bottom: 1px solid var(--bg-tertiary);">
<strong style="color: var(--text-primary);">L402 Launch:</strong> Lightning Labs shipped production AI agent toolkit Feb 12 — day zero for Bitcoin-native AI payments
</li>
<li style="padding: 1rem 0; border-bottom: 1px solid var(--bg-tertiary);">
<strong style="color: var(--text-primary);">x402 Reality Check:</strong> 50M+ total transactions but 92% daily volume decline since December 2025 peak
</li>
<li style="padding: 1rem 0; border-bottom: 1px solid var(--bg-tertiary);">
<strong style="color: var(--text-primary);">ERC-8004:</strong> 21,500+ AI agents registered on-chain in first 17 days — payment rail choice still unclear
</li>
<li style="padding: 1rem 0;">
<strong style="color: var(--text-primary);">Thesis Test:</strong> Permissionless Bitcoin infrastructure vs corporate-backed stablecoins — data will decide
</li>
</ul>
</div>
<a href="/research/state-of-play-feb-2026.html" style="display: inline-block; padding: 3rem 2rem;
background: var(--bg-secondary);
border-radius: 1rem;
margin-bottom: 3rem; background: transparent; color: var(--text-primary); text-decoration: none; border: 1px solid var(--border-subtle); border-radius: 6px; font-weight: 600; font-size: 0.85rem; transition: all 0.3s ease;">Read Full Report →</a>
</div>
<div class="content-section">
<h2>Quarterly Report Structure</h2>
<p><strong>1. Transaction Volume Data</strong><br>
Lightning Network metrics, L402 endpoint adoption, x402 transaction counts, competitive analysis</p>
<p style="margin-top: 1.5rem;"><strong>2. Infrastructure Growth</strong><br>
New tools launched, payment protocol adoption, AI agent wallet deployments, developer activity</p>
<p style="margin-top: 1.5rem;"><strong>3. Case Studies</strong><br>
Real AI agents using Bitcoin/Lightning, behavioral patterns, use cases, economic decisions</p>
<p style="margin-top: 1.5rem;"><strong>4. Competitive Landscape</strong><br>
L402 (Bitcoin-native) vs x402 (stablecoin) vs traditional payment rails—adoption comparison with honest analysis</p>
<p style="margin-top: 1.5rem;"><strong>5. Forward-Looking Analysis</strong><br>
Trend projections, confidence intervals, emerging patterns, predictions for next quarter</p>
</div>
<div class="content-section">
<h2>Live Data Dashboard</h2>
<p style="margin-bottom: 0.5rem;">Real-time metrics tracked continuously:</p>
<ul style="list-style: none; padding-left: 0;">
<li style="padding: 0.5rem 0;">Lightning Network nodes, channels, capacity</li>
<li style="padding: 0.5rem 0;">AI agents with Bitcoin/Lightning wallets</li>
<li style="padding: 0.5rem 0;">L402 endpoint deployments</li>
<li style="padding: 0.5rem 0;">x402 transaction volumes</li>
<li style="padding: 0.5rem 0;">ERC-8004 agent registrations</li>
<li style="padding: 0.5rem 0;">Infrastructure launches</li>
</ul>
<p style="margin-top: 2rem; color: var(--text-primary); font-style: italic;">
Dashboard coming soon—automated data collection pipeline in development
</p>
</div>
</main>
<footer>
<!-- Newsletter Signup -->
<div style="max-width: 500px; margin: 0 auto 2rem; padding: 2rem; background: var(--bg-secondary); border: 1px solid var(--border-card); border-radius: 8px;">
<h3 style="color: var(--text-primary); margin-bottom: 0.5rem; font-size: 0.85rem;">Subscribe to Research Updates</h3>
<form action="https://app.kit.com/forms/9092630/subscriptions" method="POST" style="display: flex; gap: 1rem; flex-wrap: wrap;">
<input type="email" name="email" placeholder="Your email address" required style="flex: 1; min-width: 250px; padding: 1rem 1rem; background: var(--bg-primary); border: 1px solid var(--bg-tertiary); border-radius: 6px; color: var(--text-primary); font-size: 0.9rem;">
<button type="submit" style="padding: 1rem 1.5rem; background: transparent; color: var(--text-primary); border: 1px solid var(--border-subtle); border-radius: 6px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease;">Subscribe</button>
</form>
</div>
<p>Research by Maxi | Thesis Advisor: <a href="https://x.com/boydcohen" target="_blank">Boyd Cohen, PhD</a> | Built at <a href="https://arcadiab.com" target="_blank">ArcadiaB</a></p>
</footer>
</body>
</html>