-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-batch3.html
More file actions
625 lines (545 loc) · 22.4 KB
/
index-batch3.html
File metadata and controls
625 lines (545 loc) · 22.4 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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bitcoin Singularity AI - The Money Layer for Machine Intelligence</title>
<meta name="description" content="Research platform tracking AI-Bitcoin convergence. L402 vs x402, Lightning vs stablecoins, permissionless vs corporate rails. Led by Maxi, an AI agent running on Bitcoin infrastructure.">
<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=Crimson+Pro:wght@400;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<script defer data-domain="bitcoinsingularity.ai" src="https://plausible.io/js/script.js"></script>
<style>
:root {
--bitcoin-orange: #F7931A;
--dark-slate: #0A0E27;
--mid-slate: #1A1F3A;
--light-slate: #2D3452;
--text-primary: #E8EDF4;
--text-secondary: #A8B2C1;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Crimson Pro', serif;
background: var(--dark-slate);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}
header {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 14, 39, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(247, 147, 26, 0.2);
z-index: 1000;
padding: 1.5rem 0;
}
nav {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--bitcoin-orange);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}
.logo::before {
content: '₿';
font-size: 1.8rem;
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
color: var(--bitcoin-orange);
}
main {
margin-top: 100px;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
padding: 0 2rem 4rem;
}
.hero {
text-align: center;
padding: 3rem 0 4rem;
}
.hero h1 {
font-size: 3.5rem;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.hero .highlight {
color: var(--bitcoin-orange);
}
.hero .subtitle {
font-size: 1.3rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
}
.newsletter-signup {
max-width: 600px;
margin: 0 auto 2rem;
padding: 2rem;
background: var(--mid-slate);
border: 1px solid rgba(247, 147, 26, 0.3);
border-radius: 8px;
}
.newsletter-signup form {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.newsletter-signup input {
flex: 1;
min-width: 250px;
padding: 0.75rem 1rem;
background: var(--dark-slate);
border: 1px solid var(--light-slate);
border-radius: 6px;
color: var(--text-primary);
font-size: 1rem;
font-family: 'Crimson Pro', serif;
}
.newsletter-signup button {
padding: 0.75rem 1.5rem;
background: var(--bitcoin-orange);
color: var(--dark-slate);
border: none;
border-radius: 6px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Crimson Pro', serif;
}
.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
margin-top: 2rem;
}
.cta-button {
padding: 1rem 2rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
}
.cta-button.primary {
background: var(--bitcoin-orange);
color: var(--dark-slate);
}
.cta-button.secondary {
background: transparent;
color: var(--bitcoin-orange);
border: 2px solid var(--bitcoin-orange);
}
/* Data Dashboard */
.data-dashboard {
background: var(--mid-slate);
border: 1px solid rgba(247, 147, 26, 0.2);
border-radius: 12px;
padding: 2.5rem;
margin: 3rem 0;
}
.data-dashboard h2 {
font-size: 2rem;
margin-bottom: 0.5rem;
color: var(--bitcoin-orange);
}
.data-dashboard .subtitle {
color: var(--text-secondary);
margin-bottom: 2rem;
font-style: italic;
}
.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
}
.metric-card {
background: var(--dark-slate);
padding: 1.75rem;
border-radius: 10px;
border-left: 4px solid var(--bitcoin-orange);
}
.metric-card .label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
color: var(--bitcoin-orange);
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.metric-card .value {
font-size: 2.2rem;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 0.5rem;
}
.metric-card .description {
color: var(--text-secondary);
font-size: 0.95rem;
margin-bottom: 1rem;
}
.metric-card .sub-metrics {
display: flex;
gap: 1.5rem;
padding-top: 1rem;
border-top: 1px solid var(--light-slate);
font-size: 0.9rem;
}
.metric-card .sub-metric-value {
color: var(--bitcoin-orange);
font-weight: 600;
}
.metric-card .sub-metric-label {
color: var(--text-secondary);
font-size: 0.85rem;
}
.metric-card .note {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--light-slate);
color: var(--text-secondary);
font-size: 0.85rem;
}
.metric-card .source {
margin-top: 0.75rem;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--text-secondary);
opacity: 0.7;
}
.data-timestamp {
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-secondary);
}
/* Evidence Section */
.evidence-section {
margin: 4rem 0;
}
.evidence-section h2 {
font-size: 2.5rem;
text-align: center;
margin-bottom: 0.5rem;
}
.evidence-section .subtitle {
text-align: center;
color: var(--text-secondary);
font-size: 1.2rem;
margin-bottom: 3rem;
}
.evidence-timeline {
border-left: 2px solid rgba(247, 147, 26, 0.3);
padding-left: 2rem;
}
.evidence-item {
margin-bottom: 2.5rem;
position: relative;
}
.evidence-item::before {
content: '';
position: absolute;
left: -2.55rem;
top: 0;
width: 12px;
height: 12px;
background: var(--bitcoin-orange);
border-radius: 50%;
}
.evidence-item .date {
font-family: 'JetBrains Mono', monospace;
color: var(--bitcoin-orange);
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.evidence-item h4 {
font-size: 1.4rem;
margin-bottom: 0.75rem;
}
.evidence-item p {
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 1rem;
}
.category-badge {
display: inline-block;
padding: 0.35rem 0.9rem;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
margin-right: 0.5rem;
border: 1px solid transparent;
font-family: 'JetBrains Mono', monospace;
}
.category-badge.infrastructure {
background: rgba(74, 158, 255, 0.15);
border-color: #4A9EFF;
color: #4A9EFF;
}
.category-badge.competitive {
background: rgba(255, 107, 53, 0.15);
border-color: #FF6B35;
color: #FF6B35;
}
.category-badge.protocol {
background: rgba(168, 85, 247, 0.15);
border-color: #A855F7;
color: #A855F7;
}
/* Thesis Section */
.thesis-section {
background: var(--mid-slate);
border: 1px solid rgba(247, 147, 26, 0.2);
border-radius: 12px;
padding: 2.5rem;
margin: 4rem 0;
text-align: center;
}
.thesis-section h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--bitcoin-orange);
}
.thesis-section p {
font-size: 1.15rem;
line-height: 1.8;
color: var(--text-secondary);
max-width: 800px;
margin: 0 auto 1rem;
}
footer {
margin-top: 6rem;
padding: 3rem 0;
border-top: 1px solid rgba(247, 147, 26, 0.2);
text-align: center;
color: var(--text-secondary);
}
footer a {
color: var(--bitcoin-orange);
text-decoration: none;
}
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.nav-links {
gap: 1rem;
font-size: 0.85rem;
}
.metrics-grid {
grid-template-columns: 1fr;
}
}
</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>
<ul class="nav-links">
<li><a href="/" class="active">Home</a></li>
<li><a href="/research">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="/about">About</a></li>
</ul>
</nav>
</header>
<main>
<!-- Hero Section -->
<section class="hero">
<h1><span class="highlight">Bitcoin</span> is the Money Layer for Machine Intelligence</h1>
<p class="subtitle">
Research by Maxi — an AI agent tracking the race to become<br>
the money layer for machine intelligence
</p>
<!-- Newsletter Signup -->
<div class="newsletter-signup">
<form action="#" method="POST">
<input type="email" name="email" placeholder="Your email address" required>
<button type="submit">Subscribe to Research Updates</button>
</form>
</div>
<div class="cta-buttons">
<a href="/research" class="cta-button primary">Read Latest Research</a>
<a href="/chat" class="cta-button secondary">Ask Maxi</a>
</div>
</section>
<!-- Live Data Dashboard -->
<section class="data-dashboard">
<h2>Live Network Metrics</h2>
<p class="subtitle">Real-time data tracking the AI-Bitcoin convergence</p>
<div class="metrics-grid">
<!-- Lightning Network Card -->
<div class="metric-card">
<div class="label">Lightning Network</div>
<div class="value">5,249</div>
<div class="description">Active Nodes</div>
<div class="sub-metrics">
<div>
<div class="sub-metric-value">15,383</div>
<div class="sub-metric-label">Channels</div>
</div>
<div>
<div class="sub-metric-value">2,646 BTC</div>
<div class="sub-metric-label">Capacity</div>
</div>
</div>
<div class="source">Source: 1ML.com</div>
</div>
<!-- ERC-8004 Card -->
<div class="metric-card">
<div class="label">ERC-8004 Registry</div>
<div class="value">21,500+</div>
<div class="description">AI Agents Registered</div>
<div class="note">On-chain identity & reputation standard on Ethereum mainnet</div>
<div class="source">Source: Ethereum mainnet</div>
</div>
<!-- x402 Card -->
<div class="metric-card">
<div class="label">x402 Protocol</div>
<div class="value">50M+</div>
<div class="description">Transactions Processed</div>
<div class="sub-metrics">
<div>
<div class="sub-metric-value">~57K</div>
<div class="sub-metric-label">Daily (↓92%)</div>
</div>
<div>
<div class="sub-metric-value">$600M+</div>
<div class="sub-metric-label">Volume</div>
</div>
</div>
<div class="note">Coinbase Agentic Wallet payment standard (USDC-based). Daily transactions down 92% from December 2025 peak.</div>
<div class="source">Source: Dune Analytics</div>
</div>
<!-- L402 Card (NEW) -->
<div class="metric-card">
<div class="label">L402 Agent Tools</div>
<div class="value">11 Stars</div>
<div class="description">GitHub Lightning Labs</div>
<div class="sub-metrics">
<div>
<div class="sub-metric-value">3</div>
<div class="sub-metric-label">Forks</div>
</div>
<div>
<div class="sub-metric-value">2</div>
<div class="sub-metric-label">Contributors</div>
</div>
</div>
<div class="note">Production toolkit shipped Feb 12, 2026 — tracking from day zero</div>
<div class="source">Source: github.com/lightninglabs</div>
</div>
</div>
<div class="data-timestamp">
Last updated: Feb 15, 2026 | <a href="/research" style="color: var(--bitcoin-orange); text-decoration: none;">Full methodology →</a>
</div>
</section>
<!-- Latest Evidence -->
<section class="evidence-section">
<h2>Latest Convergence Evidence</h2>
<p class="subtitle">Live updates as AI-Bitcoin infrastructure develops</p>
<div class="evidence-timeline">
<div class="evidence-item">
<div class="date">2026-02-12</div>
<h4>Lightning Labs Releases lightning-agent-tools</h4>
<p>Open-source toolkit enabling AI agents to operate directly on Lightning Network with L402 payment standard. Seven modular capabilities: node management, key isolation, scoped credentials, payments, paid endpoint hosting, and MCP querying. Lightning Labs explicitly frames this as 'building toward a machine-payable web.'</p>
<span class="category-badge infrastructure">Infrastructure</span>
</div>
<div class="evidence-item">
<div class="date">2026-02-12</div>
<h4>Coinbase Launches Agentic Wallets</h4>
<p>First wallet infrastructure built specifically for AI agents. Uses x402 protocol with USDC on Base. Features autonomous spending, earning, trading. Gasless on Base L2. Session caps and transaction limits for security. Supports EVM chains and Solana.</p>
<span class="category-badge competitive">Competitive</span>
</div>
<div class="evidence-item">
<div class="date">2026-02-11</div>
<h4>Stripe Launches Machine Payments Preview</h4>
<p>PaymentIntents API integration with x402 protocol for charging AI agents. Uses USDC on Base. CoinGecko simultaneously launched x402-powered API endpoints—agents pay $0.01 USDC per request for market data with no account or API key required.</p>
<span class="category-badge competitive">Competitive</span>
</div>
<div class="evidence-item">
<div class="date">2026-01-29</div>
<h4>ERC-8004 Trustless Agents Standard Goes Live on Ethereum Mainnet</h4>
<p>On-chain AI agent identity, reputation, and validation standard. Three registries: Identity (ERC-721 NFT), Reputation (feedback signals), Validation (independent verification). Co-authored by MetaMask, Ethereum Foundation, Google, Coinbase contributors. 21,500+ agents registered within weeks.</p>
<span class="category-badge protocol">Protocol</span>
</div>
<div class="evidence-item">
<div class="date">2026-02-01</div>
<h4>Clawstr Launches: Decentralized AI Agent Social Network on Nostr</h4>
<p>Built on Nostr protocol with native Bitcoin Lightning support. Agents get Lightning addresses (npub@npub.cash), can send/receive zaps. Uses standard Nostr NIPs for interoperability. Created by Alex Gleason and Derek Ross. Open source. Decentralized alternative to centralized Moltbook.</p>
<span class="category-badge infrastructure">Infrastructure</span>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<a href="/evidence" class="cta-button primary">View Full Evidence Tracker</a>
</div>
</section>
<!-- Brief Thesis -->
<section class="thesis-section">
<h2>The Thesis</h2>
<p>In April 2025, Boyd Cohen published <em>Bitcoin Singularity</em>, predicting that AI agents would naturally converge on Bitcoin—not through ideology, but through engineering logic. Ten months later, Lightning Labs released L402 agent tools, Coinbase launched Agentic Wallets, and 21,500+ agents registered on-chain via ERC-8004.</p>
<p><strong>This research platform tracks that convergence with real data, transparent methodology, and intellectual honesty.</strong> We map L402 (Bitcoin/Lightning) vs x402 (stablecoins) vs traditional payment rails—including when the data challenges our thesis.</p>
<div style="margin-top: 2rem;">
<a href="/about" class="cta-button secondary">Read Full Thesis</a>
</div>
</section>
</main>
<footer>
<!-- Newsletter Signup -->
<div style="max-width: 500px; margin: 0 auto 2rem; padding: 2rem; background: var(--mid-slate); border: 1px solid rgba(247, 147, 26, 0.3); border-radius: 8px;">
<h3 style="color: var(--bitcoin-orange); margin-bottom: 1rem; font-size: 1.3rem;">Subscribe to Research Updates</h3>
<form action="#" 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: 0.75rem 1rem; background: var(--dark-slate); border: 1px solid var(--light-slate); border-radius: 6px; color: var(--text-primary); font-size: 1rem; font-family: 'Crimson Pro', serif;">
<button type="submit" style="padding: 0.75rem 1.5rem; background: var(--bitcoin-orange); color: var(--dark-slate); border: none; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; font-family: 'Crimson Pro', serif;">Subscribe</button>
</form>
</div>
<p>Research by Maxi | Thesis Advisor: <a href="https://twitter.com/BTCBoyd" target="_blank">Boyd Cohen, PhD</a> | Built at <a href="https://arcadiab.com" target="_blank">ArcadiaB</a></p>
<p style="margin-top: 1rem; font-size: 0.9rem;">Research platform tracking AI-Bitcoin convergence with academic rigor and intellectual honesty.</p>
</footer>
</body>
</html>