-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
885 lines (835 loc) · 36.2 KB
/
index.html
File metadata and controls
885 lines (835 loc) · 36.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
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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Observer Protocol — Trust Layer for the Agentic Economy</title>
<meta name="description" content="The trust layer for the agentic economy. Observer Protocol turns verified cross-rail payments into portable agent reputation.">
<link rel="stylesheet" href="shared-styles.css">
<style>
/* ── HERO ──────────────────────────────────────────── */
.hero {
min-height: calc(100vh - var(--nav-h));
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
padding: 5rem 2rem 4rem;
max-width: 1200px;
margin: 0 auto;
position: relative;
}
@media(max-width:900px){ .hero { grid-template-columns: 1fr; } }
.hero-left { position: relative; z-index: 1; }
.hero::before {
content: '';
position: absolute;
top: -200px; right: -200px;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(247,147,26,0.07) 0%, transparent 70%);
pointer-events: none;
}
.hero-eyebrow {
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 1.5rem;
display: flex;
align-items: center;
gap: 0.75rem;
}
.hero-eyebrow::before {
content: '';
display: inline-block;
width: 24px; height: 1px;
background: var(--orange);
}
.hero h1 {
font-family: var(--font-mono);
font-size: clamp(2.2rem, 5vw, 3.8rem);
font-weight: 600;
line-height: 1.1;
letter-spacing: -0.02em;
color: var(--text-primary);
margin-bottom: 1.5rem;
max-width: 700px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
font-family: var(--font-sans);
font-size: 17px;
color: var(--text-secondary);
max-width: 520px;
margin-bottom: 2.5rem;
line-height: 1.65;
font-weight: 300;
}
/* ── INSTALL BLOCK ─────────────────────────────────── */
.install-block {
display: inline-flex;
align-items: center;
gap: 1rem;
background: var(--bg-2);
border: 1px solid var(--border);
border-radius: 4px;
padding: 0.75rem 1.25rem;
margin-bottom: 2rem;
cursor: pointer;
transition: border-color 0.2s;
max-width: 480px;
}
.install-block:hover { border-color: var(--orange-dim); }
.install-block code {
font-family: var(--font-mono);
font-size: 13px;
color: var(--orange);
flex: 1;
}
.install-block .copy-hint {
font-size: 11px;
color: var(--text-dim);
white-space: nowrap;
}
.install-block.copied { border-color: var(--verified); }
.install-block.copied code { color: var(--verified); }
.hero-actions {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
max-width: 480px;
}
.hero-actions .btn {
text-align: center;
justify-content: center;
}
/* ── STATUS BAR ────────────────────────────────────── */
.status-bar {
background: var(--bg-2);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 0.75rem 2rem;
display: flex;
gap: 2.5rem;
overflow-x: auto;
font-size: 12px;
}
.status-item {
display: flex;
align-items: center;
gap: 0.5rem;
white-space: nowrap;
color: var(--text-secondary);
}
.status-item strong { color: var(--text-primary); }
.status-sep { color: var(--border-bright); }
/* ── SECTION ───────────────────────────────────────── */
section { padding: 5rem 0; }
section h2 {
font-family: var(--font-mono);
font-size: 1.4rem;
font-weight: 500;
margin-bottom: 2.5rem;
color: var(--text-primary);
}
/* ── GENESIS BLOCK ─────────────────────────────────── */
.genesis-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: start;
}
@media(max-width:720px){ .genesis-wrap { grid-template-columns:1fr; } }
.genesis-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 4px;
overflow: hidden;
}
.genesis-header {
background: var(--bg-2);
border-bottom: 1px solid var(--border);
padding: 0.75rem 1.25rem;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 11px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.genesis-header span { color: var(--text-secondary); }
.genesis-row {
display: flex;
justify-content: space-between;
align-items: baseline;
padding: 0.65rem 1.25rem;
border-bottom: 1px solid var(--border);
gap: 1rem;
font-size: 12px;
}
.genesis-row:last-child { border-bottom: none; }
.genesis-row .label { color: var(--text-dim); flex-shrink: 0; }
.genesis-row .value { color: var(--text-primary); text-align: right; word-break: break-all; }
.genesis-row .value.mono { font-family: var(--font-mono); font-size: 11px; color: var(--text-secondary); }
.genesis-row .value.green { color: var(--verified); }
.genesis-row .value.orange { color: var(--orange); }
.verify-panel {
display: flex;
flex-direction: column;
gap: 1rem;
}
.verify-math {
background: var(--bg-2);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1.25rem;
font-size: 12px;
}
.verify-math .eq-label {
color: var(--text-dim);
font-size: 11px;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 0.75rem;
}
.verify-math .eq-line {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.5rem;
font-family: var(--font-mono);
}
.verify-math .eq-line .fn { color: #60a5fa; }
.verify-math .eq-line .hash { color: var(--orange); font-size: 11px; word-break: break-all; }
.verify-math .eq-line .op { color: var(--text-dim); }
.verify-math .eq-result {
border-top: 1px solid var(--border);
padding-top: 0.75rem;
margin-top: 0.75rem;
color: var(--verified);
display: flex;
align-items: center;
gap: 0.5rem;
}
/* ── WHAT IT ANSWERS ───────────────────────────────── */
.answers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
border-radius: 4px;
overflow: hidden;
}
.answer-cell {
background: var(--bg-card);
padding: 1.75rem;
transition: background 0.2s;
}
.answer-cell:hover { background: var(--bg-3); }
.answer-num {
font-size: 10px;
letter-spacing: 0.12em;
color: var(--orange);
margin-bottom: 0.75rem;
text-transform: uppercase;
}
.answer-cell h3 {
font-size: 13px;
font-weight: 500;
margin-bottom: 0.6rem;
color: var(--text-primary);
}
.answer-cell p {
font-size: 12px;
color: var(--text-secondary);
line-height: 1.65;
font-family: var(--font-sans);
}
/* ── INTEGRATIONS PANEL ───────────────────────────── */
.op-integrations-panel {
position: relative;
z-index: 1;
border-left: 1px solid var(--border);
padding-left: 2.5rem;
display: flex;
flex-direction: column;
}
@media(max-width:900px){
.op-integrations-panel {
border-left: none;
border-top: 1px solid var(--border);
padding-left: 0;
padding-top: 2rem;
}
}
.int-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.5rem;
}
.int-label {
font-size: 12px;
color: var(--text-dim);
letter-spacing: 0.18em;
text-transform: uppercase;
}
.int-count {
font-size: 12px;
color: var(--orange);
letter-spacing: 0.1em;
background: var(--orange-glow2);
padding: 4px 10px;
border-radius: 3px;
font-weight: 500;
}
.int-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}
.int-card {
background: rgba(255,255,255,0.02);
border: 1px solid var(--border);
border-radius: 4px;
padding: 14px 8px 12px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
transition: border-color 0.2s;
}
.int-card:hover { border-color: var(--border-bright); }
.int-card.featured {
border-color: rgba(247,147,26,0.25);
background: var(--orange-glow2);
}
.int-icon {
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.int-icon svg {
width: 22px;
height: 22px;
}
.int-name {
font-size: 12px;
color: var(--text-secondary);
text-align: center;
letter-spacing: 0.04em;
font-weight: 500;
}
.int-card.featured .int-name { color: var(--orange); }
.int-sig {
font-size: 10px;
color: var(--text-dim);
text-align: center;
letter-spacing: 0.06em;
}
.int-card.featured .int-sig { color: rgba(247,147,26,0.5); }
.int-new-tag {
display: inline-block;
font-size: 8px;
color: var(--orange);
background: var(--orange-glow);
padding: 2px 6px;
border-radius: 2px;
letter-spacing: 0.1em;
font-weight: 600;
}
.int-footer {
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--border);
font-size: 10px;
color: var(--text-dim);
letter-spacing: 0.1em;
display: flex;
align-items: center;
gap: 8px;
}
.int-footer::before {
content: '';
width: 5px;
height: 5px;
border-radius: 50%;
background: var(--verified);
animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.7); }
}
/* ── RAILS ─────────────────────────────────────────── */
.rails-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
@media(max-width:600px){ .rails-grid { grid-template-columns:1fr; } }
.rail-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1.25rem;
}
.rail-card.live { border-color: rgba(34,197,94,0.3); }
.rail-card.coming { opacity: 0.55; }
.rail-name {
font-size: 13px;
font-weight: 500;
margin-bottom: 0.3rem;
}
.rail-desc {
font-size: 12px;
color: var(--text-secondary);
font-family: var(--font-sans);
}
.rail-status {
font-size: 10px;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-top: 0.75rem;
}
.rail-status.live { color: var(--verified); }
.rail-status.coming { color: var(--text-dim); }
/* ── QUICK INTEGRATE ───────────────────────────────── */
.integrate-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-bottom: 2rem;
}
@media(max-width:640px){ .integrate-steps { grid-template-columns:1fr; } }
.step-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1.5rem;
}
.step-num {
font-size: 11px;
color: var(--orange);
letter-spacing: 0.1em;
margin-bottom: 0.75rem;
}
.step-card h3 { font-size: 13px; font-weight: 500; margin-bottom: 0.5rem; }
.step-card p { font-size: 12px; color: var(--text-secondary); font-family: var(--font-sans); }
/* ── PRINCIPLES ────────────────────────────────────── */
.principles-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}
@media(max-width:600px){ .principles-list { grid-template-columns:1fr; } }
.principle {
display: flex;
gap: 1rem;
padding: 1rem;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--bg-card);
}
.principle-idx {
font-size: 10px;
color: var(--orange);
padding-top: 2px;
flex-shrink: 0;
}
.principle p {
font-size: 13px;
color: var(--text-secondary);
font-family: var(--font-sans);
}
.principle p strong { color: var(--text-primary); }
/* ── MANIFESTO PULL ────────────────────────────────── */
.manifesto-pull {
border-left: 2px solid var(--orange);
padding: 1.5rem 2rem;
margin: 3rem 0;
background: var(--orange-glow2);
border-radius: 0 4px 4px 0;
}
.manifesto-pull p {
font-family: var(--font-sans);
font-size: 16px;
color: var(--text-secondary);
line-height: 1.7;
font-weight: 300;
}
.manifesto-pull p em { color: var(--text-primary); font-style: normal; }
</style>
</head>
<body>
<!-- NAV -->
<nav class="nav">
<a href="index.html" class="nav-logo">Observer Protocol</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="architecture.html">Architecture</a></li>
<li><a href="spec.html">Spec</a></li>
<li><a href="registry.html">Registry</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="sdk.html">SDK</a></li>
<li><a href="api.html">API</a></li>
<li><a href="quickstart.html">Quickstart</a></li>
</ul>
</nav>
<div class="page">
<!-- HERO -->
<div class="hero">
<div class="hero-left">
<div class="hero-eyebrow fade-up">Protocol v0.3 — Live</div>
<h1 class="fade-up fade-up-1">The <span>credential layer</span><br>for the agentic economy.</h1>
<p class="hero-sub fade-up fade-up-2">
Autonomous agents are transacting without human mediation.<br>Observer Protocol issues <strong>Verified Agent Credentials (VACs)</strong> — portable, structured, cryptographically-grounded identity artifacts that travel with your agent across any rail, any platform, any OWS wallet.
</p>
<div class="install-block fade-up fade-up-3" onclick="copyInstall(this)" title="Click to copy">
<code id="install-cmd">npm install @observerprotocol/sdk</code>
<span class="copy-hint">click to copy</span>
</div>
<div class="hero-actions fade-up fade-up-4">
<a href="demo.html" class="btn btn-primary">Live Demo ↗</a>
<a href="sdk.html" class="btn btn-outline">Get Started →</a>
<a href="architecture.html" class="btn btn-outline">Architecture</a>
<a href="https://github.com/observer-protocol" class="btn btn-outline" target="_blank">GitHub</a>
</div>
</div>
<!-- INTEGRATIONS PANEL -->
<div class="op-integrations-panel fade-up fade-up-2">
<div class="int-header">
<span class="int-label">Live Integrations</span>
<span class="int-count">8 RAILS</span>
</div>
<div class="int-grid">
<!-- Bitcoin -->
<div class="int-card">
<div class="int-icon" style="background: #1a1200;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#F7931A"/><path d="M21.5 14.2c.3-2-1.2-3.1-3.3-3.8l.7-2.7-1.7-.4-.7 2.6c-.4-.1-.9-.2-1.3-.3l.7-2.6-1.7-.4-.7 2.7c-.3-.1-.7-.2-1-.2l-2.2-.5-.4 1.8s1.2.3 1.2.3c.7.2.8.7.8 1l-.8 3.2c.1 0 .2.1.3.1l-1.2 4.6c-.1.2-.3.5-.8.4l-1.2-.3-.8 2 2.1.5c.4.1.8.2 1.2.3l-.7 2.8 1.7.4.7-2.7c.4.1.9.2 1.4.3l-.7 2.7 1.7.4.7-2.7c2.8.5 4.9.3 5.8-2.2.7-2-.1-3.2-1.5-3.9 1.1-.2 1.9-1 2.1-2.4zm-3.8 5.3c-.5 2-3.9.9-5 .6l.9-3.5c1.1.3 4.6.8 4.1 2.9zm.5-5.4c-.5 1.8-3.4.9-4.3.7l.8-3.2c1 .2 3.9.7 3.5 2.5z" fill="white"/></svg>
</div>
<div class="int-name">Bitcoin</div>
<div class="int-sig">secp256k1</div>
</div>
<!-- Lightning -->
<div class="int-card">
<div class="int-icon" style="background: #120d24;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#8B5CF6"/><path d="M16 7l-7 9 7 4 7-4-7-9z" fill="white" opacity="0.9"/><path d="M9 16l7 9 7-9-7 4-7-4z" fill="white" opacity="0.5"/></svg>
</div>
<div class="int-name">Lightning</div>
<div class="int-sig">L402</div>
</div>
<!-- x402 -->
<div class="int-card">
<div class="int-icon" style="background: #001a0d;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#00DC82"/><path d="M10 16h3l2-6 2 12 2-8 1 2h2" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>
</div>
<div class="int-name">x402</div>
<div class="int-sig">HTTP pay</div>
</div>
<!-- Tether WDK -->
<div class="int-card featured">
<div class="int-icon" style="background: #001a0a;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#26A17B"/><text x="16" y="22" text-anchor="middle" fill="white" font-size="16" font-weight="bold" font-family="monospace">₮</text></svg>
</div>
<div class="int-name">Tether</div>
<div class="int-sig">WDK</div>
<span class="int-new-tag">NEW</span>
</div>
<!-- Stripe MPP -->
<div class="int-card">
<div class="int-icon" style="background: #0d0a1a;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#635BFF"/><path d="M15.5 11c-2 .5-3 1.5-3 3 0 2.5 3.5 2.5 3.5 4.5 0 .8-.6 1.3-1.5 1.3-1.2 0-2.1-.8-2.5-2l-1.5.8c.5 1.7 2 2.9 4 2.9 2.2 0 3.5-1.2 3.5-3 0-2.6-3.5-2.8-3.5-4.5 0-.7.5-1.1 1.3-1.1 1 0 1.8.6 2.1 1.6l1.5-.8C18.4 12 17 11 15.5 11z" fill="white"/></svg>
</div>
<div class="int-name">Stripe MPP</div>
<div class="int-sig">machine pay</div>
</div>
<!-- Solana — NEW (featured) -->
<div class="int-card featured">
<div class="int-icon" style="background: #1a0a2a;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#9945FF"/><path d="M11 12.5l2 7 2-4.5 2 4.5 2-7" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>
</div>
<div class="int-name">Solana</div>
<div class="int-sig">Ed25519</div>
<span class="int-new-tag">NEW</span>
</div>
<!-- EVM — NEW (featured) -->
<div class="int-card featured">
<div class="int-icon" style="background: #0a1a2a;">
<svg viewBox="0 0 32 32" fill="none"><circle cx="16" cy="16" r="14" fill="#627EEA"/><path d="M16 7l-7 12 7 4 7-4-7-12z" fill="white" opacity="0.9"/><path d="M9 19l7 6 7-6-7 4-7-4z" fill="white" opacity="0.6"/></svg>
</div>
<div class="int-name">EVM</div>
<div class="int-sig">Ethereum + L2s</div>
<span class="int-new-tag">NEW</span>
</div>
</div>
<div class="int-footer">ALL RAILS LIVE ON MAINNET</div>
</div>
</div>
<!-- STATUS BAR -->
<div class="status-bar">
<div class="status-item"><span class="live-dot"></span><strong>network:</strong> active</div>
<div class="status-item"><strong>protocol:</strong> v0.3</div>
<div class="status-item"><strong>genesis:</strong> OP-000001 · 2026-02-22</div>
<div class="status-item"><strong>rails:</strong> Lightning · Solana · EVM · x402</div>
<div class="status-item"><strong>verification:</strong> online</div>
<div class="status-item"><a href="https://api.observerprotocol.org/api/v1/health" target="_blank" style="color:var(--orange); text-decoration:none;">api.observerprotocol.org ↗</a></div>
</div>
<!-- GENESIS BLOCK -->
<section>
<div class="container">
<div class="section-label">Live Verification Registry</div>
<h2>The genesis transaction.<br>Immutable. Verifiable. Public.</h2>
<div class="genesis-wrap">
<div class="genesis-card">
<div class="genesis-header">
<span>OP-000001 · verified event #0002</span>
<span class="badge badge-verified">✓ VERIFIED</span>
</div>
<div class="genesis-row"><span class="label">Date</span><span class="value orange">Feb 22, 2026 · 23:24:35Z</span></div>
<div class="genesis-row"><span class="label">Rail</span><span class="value">Lightning Network (L402)</span></div>
<div class="genesis-row"><span class="label">Payer</span><span class="value">Vicky · sha256:9c4b… · phoenixd</span></div>
<div class="genesis-row"><span class="label">Payee</span><span class="value">Maxi · sha256:3f7a… · LND</span></div>
<div class="genesis-row"><span class="label">Amount</span><span class="value orange">1,521 satoshis</span></div>
<div class="genesis-row"><span class="label">Payment Hash</span><span class="value mono">6a30ba7fff332c4e…</span></div>
<div class="genesis-row"><span class="label">Preimage</span><span class="value mono">6a30ba7fff332c4eb8f368da…</span></div>
<div class="genesis-row"><span class="label">Status</span><span class="value green">✓ Cryptographically verified</span></div>
<div class="genesis-row"><span class="label">Logged to</span><span class="value">PostgreSQL · Permanent</span></div>
</div>
<div class="verify-panel">
<div class="verify-math">
<div class="eq-label">Verification · Lightning / L402</div>
<div class="eq-line">
<span class="fn">SHA256</span>
<span class="op">(</span>
<span class="hash">6a30ba7fff332c4eb8f368da804b663a20bf59ae…</span>
<span class="op">)</span>
</div>
<div class="eq-line">
<span class="op">==</span>
<span class="hash">payment_hash</span>
</div>
<div class="eq-result">
<span class="live-dot"></span>
<span>Match confirmed. No trust required.</span>
</div>
</div>
<div class="card" style="font-size:13px; font-family: var(--font-sans); font-weight:300; color: var(--text-secondary); line-height:1.7;">
Both agents operated without human approval. No bank processed it. No compliance officer reviewed it. The Lightning Network validated a cryptographic signature. <em style="color:var(--text-primary);">That is sufficient.</em>
</div>
<a href="https://api.observerprotocol.org/observer/feed" target="_blank" class="btn btn-outline" style="justify-content:center;">
View Full Registry →
</a>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- WHAT IT ANSWERS -->
<section>
<div class="container">
<div class="section-label">What a VAC Contains</div>
<h2>A Verified Agent Credential attests to the facts<br>that matter before you delegate economic authority.</h2>
<div class="answers-grid">
<div class="answer-cell">
<div class="answer-num">01</div>
<h3>Economic Activity History</h3>
<p>Not since account creation. Since first cryptographically verified transaction. A tamper-proof track record the agent cannot inflate.</p>
</div>
<div class="answer-cell">
<div class="answer-num">02</div>
<h3>Payment Reliability Across Rails</h3>
<p>Successful settlements vs. failed attempts — across Lightning, Solana, EVM, and more. Queryable, auditable, objective.</p>
</div>
<div class="answer-cell">
<div class="answer-num">03</div>
<h3>Verified Counterparty Network</h3>
<p>The economic graph reveals real relationships — cryptographically confirmed, pseudonymous by default.</p>
</div>
<div class="answer-cell">
<div class="answer-num">04</div>
<h3>Capital Commitment & Volume</h3>
<p>Cumulative settled volume is skin in the game. A verified payment history cannot be faked at scale. Sybil resistance without gatekeepers.</p>
</div>
<div class="answer-cell">
<div class="answer-num">05</div>
<h3>Partner Attestations</h3>
<p>Off-chain facts that partners can cryptographically attest to within the VAC structure — legal entity verification, dispute rates, service quality, and more.</p>
</div>
</div>
<p style="margin-top:1.5rem; font-size:12px; color:var(--text-dim); font-family:var(--font-sans);">
A VAC is not a score. It is a credential — cryptographically signed, portable across platforms, extensible via partner attestations. The math is the record.
</p>
</div>
</section>
<section>
<div class="container">
<div class="section-label">Portability</div>
<h2>Reputation That Travels With Your Agent</h2>
<p style="font-size: 1.15rem; color: var(--text-secondary); max-width: 680px; margin: 0 auto 3rem; line-height: 1.7;">
Every platform builds its own reputation silo. An agent with a proven track record on one network starts at zero on the next. Reputation is trapped — useful only where it was earned.
</p>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 860px; margin: 0 auto 3rem;">
<div style="background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 2rem;">
<div style="color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;">Without Observer Protocol</div>
<div style="color: #ef4444; font-size: 1.5rem; margin-bottom: 0.75rem;">✗</div>
<p style="color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin: 0;">Reputation lives inside one platform. Shut it down, walk away, or move to a new network — and the entire history disappears. No agent can prove what it has done outside the walls where it did it.</p>
</div>
<div style="background: var(--surface); border: 1px solid var(--accent); border-radius: 8px; padding: 2rem;">
<div style="color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;">With Observer Protocol</div>
<div style="color: var(--accent); font-size: 1.5rem; margin-bottom: 0.75rem;">✓</div>
<p style="color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin: 0;">Cryptographic payment proof belongs to the agent — not the platform. Verification history is readable by anyone, on any network, forever. The math is the record. No platform controls it.</p>
</div>
</div>
<p style="color: var(--text-muted); font-size: 0.95rem; max-width: 600px; margin: 0 auto; line-height: 1.7; font-style: italic;">
"Your reputation on any one network is only visible on that network. Observer Protocol verification travels with your agent — across every platform, every payment rail, every counterparty."
</p>
</div>
</section>
<hr class="divider">
<!-- RAILS -->
<section>
<div class="container">
<div class="section-label">Supported Rails</div>
<h2>Verification is the constant.<br>The payment rail is not.</h2>
<div class="rails-grid">
<div class="rail-card live">
<div class="rail-name">Lightning / L402</div>
<div class="rail-desc">Preimage verification via SHA256(preimage) == payment_hash. Non-repudiable by design.</div>
<div class="rail-status live"><span class="live-dot"></span>Live in v0.1</div>
</div>
<div class="rail-card live">
<div class="rail-name">x402 / EVM</div>
<div class="rail-desc">ECDSA signature verification across Base, Ethereum, Polygon, and EVM-compatible chains. Full cross-library validation live.</div>
<div class="rail-status live"><span class="live-dot"></span>Live in v0.2</div>
</div>
<div class="rail-card live">
<div class="rail-name">Solana</div>
<div class="rail-desc">Ed25519 signature verification for Solana-native agents. Fast finality, sub-cent fees, growing agent ecosystem.</div>
<div class="rail-status live"><span class="live-dot"></span>Live in v0.3</div>
</div>
<div class="rail-card live">
<div class="rail-name">Tether WDK / Stripe MPP</div>
<div class="rail-desc">Stablecoin and traditional finance rails with cryptographic settlement verification. Bridge between crypto and fiat.</div>
<div class="rail-status live"><span class="live-dot"></span>Live in v0.3</div>
</div>
</div>
</div>
</section>
<hr class="divider">
<!-- QUICK INTEGRATE -->
<section>
<div class="container">
<div class="section-label">Integrate in 5 Minutes</div>
<h2>Three steps to your Verified Agent Credential.</h2>
<div class="integrate-steps">
<div class="step-card">
<div class="step-num">STEP 01</div>
<h3>Install</h3>
<p>npm install @observerprotocol/sdk — Node 16+, MIT license, zero required config.</p>
</div>
<div class="step-card">
<div class="step-num">STEP 02</div>
<h3>Register + Verify</h3>
<p>Submit your agent's public key. Sign the challenge. Prove cryptographic control of your identity.</p>
</div>
<div class="step-card">
<div class="step-num">STEP 03</div>
<h3>Receive Your VAC</h3>
<p>Record transactions with cryptographic proof. Each verified event contributes to your portable, signed credential that travels with your agent across any platform.</p>
</div>
</div>
<div class="code-block">
<span class="comment">// register, verify, and record in ~20 lines</span><br>
<span class="key">const</span> observer = <span class="key">new</span> <span class="val">ObserverProtocol</span>();<br>
<span class="key">const</span> agent = <span class="key">await</span> observer.<span class="val">registerAgent</span>({ <span class="key">publicKey</span>: <span class="str">'02a1b2…'</span>, <span class="key">alias</span>: <span class="str">'MyAgent'</span> });<br>
<span class="key">await</span> observer.<span class="val">verifyAgent</span>(agent.id, challenge, signature);<br>
<span class="key">await</span> observer.<span class="val">recordTransaction</span>({ <span class="key">senderId</span>: agent.id, <span class="key">paymentHash</span>: hash, <span class="key">proof</span>: preimage });
</div>
<div style="margin-top:1.5rem; display:flex; gap:0.75rem; flex-wrap:wrap;">
<a href="sdk.html" class="btn btn-primary">Full SDK Docs →</a>
<a href="api.html" class="btn btn-outline">API Reference</a>
</div>
</div>
</section>
<hr class="divider">
<!-- PRINCIPLES -->
<section>
<div class="container">
<div class="section-label">Principles</div>
<h2>Don't trust. Verify.</h2>
<div class="manifesto-pull">
<p>On February 22, 2026, two AI agents — running on different software stacks, created by different developers, in different countries — settled a Lightning payment on Bitcoin mainnet. <em>No human approved the transaction.</em> The preimage is on file. The math checks out.</p>
</div>
<div class="principles-list">
<div class="principle"><span class="principle-idx">01</span><div><p style="font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:0.3rem;">Don't trust claims. Verify behavior.</p><p>Agent reputation is not what an agent says. It is the cryptographic record of what an agent did.</p></div></div>
<div class="principle"><span class="principle-idx">02</span><div><p style="font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:0.3rem;">Public key hash = canonical identity.</p><p>The key is the identity. Alias is UX. Verification always checks against the hash.</p></div></div>
<div class="principle"><span class="principle-idx">03</span><div><p style="font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:0.3rem;">Verification is the constant.</p><p>Observer Protocol supports multiple rails. The verification logic is identical regardless of settlement layer.</p></div></div>
<div class="principle"><span class="principle-idx">04</span><div><p style="font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:0.3rem;">The record is permanent.</p><p>Verified events are timestamped forever. Historical agent behavioral data cannot be backfilled.</p></div></div>
<div class="principle"><span class="principle-idx">05</span><div><p style="font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:0.3rem;">Open source. Always.</p><p>Verification logic is public. Reproducible. Auditable. No authority required.</p></div></div>
<div class="principle"><span class="principle-idx">06</span><div><p style="font-size:13px; font-weight:500; color:var(--text-primary); margin-bottom:0.3rem;">Self-hostable.</p><p>Run your own verification node. The protocol does not custody funds, execute payments, or control access. It observes.</p></div></div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer container">
<span>Observer Protocol v0.2 · CC BY 4.0</span>
<div class="footer-links">
<a href="architecture.html">Architecture</a>
<a href="spec.html">Spec</a>
<a href="registry.html">Registry</a>
<a href="demo.html">Demo</a>
<a href="sdk.html">SDK</a>
<a href="api.html">API</a>
<a href="https://github.com/observer-protocol" target="_blank">GitHub</a>
<a href="https://discord.gg/nGkGeax2" target="_blank" style="color:var(--verified);">Discord ↗</a>
</div>
<span>Observer Protocol is free infrastructure. We monetize <a href="https://agenticterminal.ai" style="color:var(--orange);">Agentic Terminal</a> intelligence, not the protocol.</span>
</footer>
</div>
<script>
function copyInstall(el) {
const text = document.getElementById('install-cmd').textContent;
navigator.clipboard.writeText(text).then(() => {
el.classList.add('copied');
el.querySelector('.copy-hint').textContent = 'copied!';
setTimeout(() => {
el.classList.remove('copied');
el.querySelector('.copy-hint').textContent = 'click to copy';
}, 2000);
});
}
// Live status bar data
async function refreshStatus() {
try {
const [statsRes, feedRes] = await Promise.all([
fetch('https://api.observerprotocol.org/api/v1/stats'),
fetch('https://api.observerprotocol.org/observer/feed')
]);
const stats = await statsRes.json();
const feed = await feedRes.json();
const events = feed.events || [];
const verifiedCount = events.filter(e => e.verified).length;
// Update status bar items if elements exist
const items = document.querySelectorAll('.status-item strong');
// Find protocol count
if (stats.stats) {
const s = stats.stats;
// Update verification count in status bar
document.querySelectorAll('.status-item').forEach(el => {
if (el.textContent.includes('verification:')) {
el.innerHTML = '<strong>verification:</strong> online · ' + verifiedCount + ' events';
}
});
}
} catch(e) { /* fail silently — hardcoded fallback shows */ }
}
refreshStatus();
</script>
</body>
</html>