-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
961 lines (947 loc) · 56.5 KB
/
index.html
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
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-112428799-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-112428799-1");
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<title>Oyster - The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.</title>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Oyster - The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<meta itemprop="description" content="The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<meta itemprop="image" content="https://oysterprotocol.com/assets/img/perl-large.png">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://oysterprotocol.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Oyster - The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<meta property="og:description" content="The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<meta property="og:image" content="https://oysterprotocol.com/assets/img/perl-large.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Oyster - The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<meta name="twitter:description" content="The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.">
<meta name="twitter:image" content="https://oysterprotocol.com/assets/img/perl-large.png">
<link rel="apple-touch-icon" sizes="57x57" href="assets/icon/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="assets/icon/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="assets/icon/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/icon/apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="assets/icon/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="assets/icon/apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="assets/icon/apple-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="assets/icon/apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/icon/apple-icon-180x180.png" />
<link rel="icon" type="image/png" sizes="192x192" href="assets/icon/android-icon-192x192.png" />
<link rel="icon" type="image/png" sizes="32x32" href="assets/icon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="assets/icon/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="assets/icon/favicon-16x16.png" />
<link rel="shortcut icon" href="assets/icon/favicon.ico" />
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic%7CRoboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans" />
<!-- build:css -->
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/b5453f87a6.js"></script>
<script src="assets/js/parallax.js"></script>
<script src="assets/js/main.js"></script>
<!-- endbuild -->
</head>
<body>
<nav class="navbar navbar-expand-md navbar-with-top-banner-el">
<div class="container">
<ul class="navbar-nav mr-auto nav-logo">
<li class="nav-item active">
<a class="nav-link nav-logo" href="#">
<img class="nav-logo-img white active" src="assets/img/logo-white.png" alt="">
<img class="nav-logo-img full" src="assets/img/svg/oyster-logo.svg" alt="">
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Oyster</a>
</li>
</ul>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link text-uppercase" href="https://oysterstorage.com/" target="_blank">Oyster Storage
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="/#core-team">TEAM
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase" href="#token">Token</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase" href="https://github.com/oysterprotocol" target="_blank">Github</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase" href="assets/pdf/OysterRoadmap.pdf" target="_blank">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase" href="https://medium.com/oysterprotocol" target="_blank">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase" href="https://t.me/oysterprotocol" target="_blank" class="footer-link">Telegram</a>
</li>
<li class="nav-item">
<a class="nav-link text-uppercase" href="https://www.reddit.com/r/oyster/" target="_blank" class="footer-link">Reddit</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="banner-new-ear-widget" id="root" >
<div class="widget-container" >
</div>
</div>
<div class="header h-50 parallax-container" data-parallax="scroll" data-position="left" data-bleed="10" data-image-src="assets/img/bg1.png">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="subContent">
<h1 class="header-title">Goodbye Banner Ads.
<br />Hello Oyster.</h1>
<p class="header-content">The future of website monetization and distributed storage, built on IOTA Tangle and Ethereum.</p>
<a target="_blank" href="assets/pdf/OysterWhitepaper.pdf" class="btn btn-lg btn-block whitepaper">Read the Whitepaper</a>
<p class="wp-translations">Also available in
<a target="_blank" href="assets/pdf/OysterWhitepaper_CN.pdf">Chinese (中文的)</a>,
<a target="_blank" href="assets/pdf/OysterWhitepaper_KR.pdf">Korean (한국어)</a>
</p>
</div>
</div>
<div class="col-lg-6">
<div class="subContent video">
<iframe class="embedly-embed" src="https://player.vimeo.com/video/239320938" scrolling="no" frameborder="0" allowfullscreen=""></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="px-0 containers container-fulid">
<div class="partner">
<div class="mx-0 row middle">
<a href="https://www.huffingtonpost.com/entry/the-downside-of-cloud-storage_us_5a52342fe4b0cd114bdb3447" target="_blank">
<img src="assets/img/HUFFPOST-icon.png" />
</a>
<a href="http://www.tgdaily.com/technology/data-storage-issues" target="_blank">
<img src="assets/img/TGDaily-icon.png" />
</a>
<a href="https://www.coinspeaker.com/2017/10/26/disruptive-blockchain-technology-targets-cloud-advertisement-industries/"
target="_blank">
<img src="assets/img/Coinspeaker-icon.png" />
</a>
<a href="https://www.cryptocoinsnews.com/solving-advertisement-cloud-concerns-unified-solution/" target="_blank">
<img src="assets/img/cryptocoins-icon.png" />
</a>
<a href="http://www.thedrum.com/profile/news/274738/online-advertising-problems-and-how-fix-them" target="_blank">
<img src="assets/img/THEDAUM-icon.png" />
</a>
<a href="http://bitguru.co.uk/take-a-look-at-oyster-powered-by-the-iota-tangle/" target="_blank">
<img src="assets/img/bitGuru-icon.png" />
</a>
<a href="http://www.newsbtc.com/2017/10/21/anonymous-storage-ledger-disrupt-ad-industry/" target="_blank">
<img src="assets/img/newsbtc-icon.png" />
</a>
<a href="https://article.wn.com/view/2017/10/26/The_Data_on_the_internet_is_not_Protected" target="_blank">
<img src="assets/img/wn-icon.png" />
</a>
<a href="https://blog.icoalert.com/ico-alert-report-oyster-ffda53924db6" target="_blank">
<img src="assets/img/ICOALERT-icon.png" />
</a>
</div>
</div>
<div class="section-1">
<div class="container">
<div class="row middle">
<p class="paragraph-1">THE PROBLEM</p>
<h2 class="section-heading">Advertising is Broken</h2>
<img src="assets/img/problem.png" width="240" />
<div class="text-block">
Advertisements have always been a fundamentally weak proposition. They are intrusive, tangential, privacy invasive, and distract
from the cleanliness of a website.
<br>
<br>Making matters worse, creative content publishers are suffering due to the advent of ad blockers
and a general disregard to what advertisements have to offer.
</div>
</div>
</div>
</div>
<div class="section-1">
<div class="container">
<div class="row middle">
<p class="paragraph-1">The SOLUTION: OYSTER</p>
<h2 class="section-heading">Revenue, in One Line of Code</h2>
<img class="code" src="assets/img/Code.png" />
<div class="text-block">
Website visitors contribute a small portion of their CPU and GPU power to enable users' files to be stored on a decentralized
and anonymous ledger.
<br>
<br>In return, the website owners get paid indirectly by the storage users and website visitors can enjoy
an ad-free browsing experience.
</div>
</div>
</div>
</div>
<div class="section-2" data-parallax="scroll" speed="1.0" data-image-src="assets/img/bg2.png">
<div class="container">
<div class="row middle">
<p class="paragraph-1 light">Inside Oyster</p>
<h2 class="section-heading light">A Robust Data-Storage Protocol</h2>
<div class="row-art">
<div class="col-md-12">
<div class="pt-4 pb-4 px-5 art-case left-art">
<h3 class="light heading-3">Robust, Redundant Data Storage</h3>
<p class="paragraph-2 light">
Files uploaded via Oyster are stored on the IOTA Tangle. This means that an excess of redundant duplicates are stored throughout
the network topology of the Tangle, therefore mitigating the threat of data loss. Nodes
running the Oyster Protocol perform Proof of Work to guarantee that the Tangle retains
the data.
</p>
<div class="right-img">
<img src="assets/img/anchor-icon.png" width="140" class="screenshot">
</div>
</div>
</div>
</div>
<div class="row-art">
<div class="col-md-12">
<div class="pt-4 pb-4 pl-5 pr-4 art-case right-art">
<div class="left-img">
<img src="assets/img/ledger-icon.png" width="120" class="screenshot">
</div>
<h3 class="light heading-3">Dual Ledger Integration</h3>
<p class="paragraph-2 light">
The IOTA Tangle (Directed Acyclic Graph) is used for data retention and Proof of Work negotiation between Nodes. The Smart
Contract technology of the Ethereum Blockchain is used to produce Oyster Pearls (the
token), therefore activating the unique token attributes that enables Oyster operation.
</p>
</div>
</div>
</div>
<div class="row-art">
<div class="col-md-12">
<div class="pt-4 pb-4 px-5 art-case left-art">
<h3 class="light heading-3">Treasure Hunting Algorithm</h3>
<p class="paragraph-2 light">
Oyster Web Nodes perform Proof of Work to search for embedded Pearls on the Tangle, which inadvertently commits the user
uploaded data to the Tangle. It's like how a bee tries to get the sweet nectar of a flower,
so it inadvertently pollinates the flower with the pollen on its body. All activity across
the Oyster network is economically motivated; no aspect of the Protocol relies on altruistic
actors.
</p>
<div class="right-img">
<img src="assets/img/treasure-icon.png" width="120" class="screenshot">
</div>
</div>
</div>
</div>
<div class="row-art">
<div class="col-md-12">
<div class="pt-4 pb-4 pr-4 art-case right-art">
<div class="left-img">
<img src="assets/img/ZeroKnowledge_icon.png" width="150" class="screenshot">
</div>
<h3 class="light heading-3">Zero Knowledge, Anonymous Storage</h3>
<p class="paragraph-2 light">
No personal information, usernames, nor passwords are ever used. Each uploaded file is assigned a unique handle, which acts
like a private seed key. Anyone that has the handle can retrieve the data from the Tangle,
even if they were to use their own custom-built script and Tangle Node. Mixer contracts
on the Ethereum Blockchain can conceal who paid for the storage.
</p>
</div>
</div>
</div>
<div class="row-art">
<div class="col-md-12">
<div class="pt-4 pb-4 px-5 art-case left-art">
<h3 class="light heading-3">Open Source, Extendable, & Auditable</h3>
<p class="paragraph-2 light">
The Oyster Protocol is developed in a community driven model without any single point of failure. Extension projects can
be built on top of the mesh-net topology and protocol API. This enables a whole class
of truly decentralized applications to be built; such as decentralized telephone calling.
Anyone is able to develop clients or extensions without permission from a central figurehead.
</p>
<div class="right-img">
<img src="assets/img/ship-icon.png" width="150" class="screenshot">
</div>
</div>
</div>
</div>
<div class="row-art">
<div class="col-md-12">
<div class="pt-4 pb-4 pr-4 art-case right-art">
<h3 class="light heading-3">Intrinsic Storage-Pegged Value</h3>
<p class="paragraph-2 light">
Oyster Pearls are the bridge between the motivation of a user to spend money on reliably storing data and the motivation
of a website owner to cleanly monetize their web content. The Pearl Token (PRL) is unlike
any other coin, it is intrinsically pegged to the market value of storage prices without
requiring a reserve to back it up. Over time PRL's peg to storage increases.
</p>
<div class="left-img">
<img src="assets/img/perl-icon.png" width="150" class="screenshot">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-3">
<div class="container">
<p class="paragraph-3">UNDER THE SHELL</p>
<h2 class="section-heading">The Oyster Protocol</h2>
<div class="protocol-content">
<div class="row middle">
<div class="col-lg-3 d-lg-block protocol-hidden protocol-bg pr-0">
<ul class="protocol-title">
<li>
<button class="tablink title-blue" onclick="openCity(event, 'StorageUser')">Storage User</button>
</li>
<li>
<button class="tablink" onclick="openCity(event, 'BrokerNode')">Broker Node</button>
</li>
<li>
<button class="tablink" onclick="openCity(event, 'WebNode')">Web Node</button>
</li>
<li>
<button class="tablink" onclick="openCity(event, 'WebsiteOwner')">Website Owner</button>
</li>
<li>
<button class="tablink" onclick="openCity(event, 'Tangle')">Tangle</button>
</li>
<li>
<button class="tablink" onclick="openCity(event, 'Blockchain')">Blockchain</button>
</li>
</ul>
</div>
<div class="col-lg-9">
<div id="StorageUser" class="city" style="display:block">
<div class="main-content">
<h1 class="heading-4">Storage User</h1>
<p>A user that spends Oyster Pearls to upload a file</p>
<div>
<p>Responsibilities</p>
<ul>
<li>Pay the correct amount of Oyster Pearls to two Broker Nodes.</li>
<li>Despite automation, has final discretion in choosing which two Broker Nodes to
use.
</li>
<li>Encrypt and split file locally in browser before sending parts to chosen Broker
Nodes.
</li>
<li>Verify the integrity of the Data Map installed by Broker Nodes.</li>
<li>Share Broker Node contracts via the Distributed Reputation System.</li>
<li>Securely store the Oyster Handle to retrieve the file from the Tangle at a later
time.
</li>
</ul>
</div>
<div>
<p>Reward</p>
<ul>
<li>Their file is securely, reliably, and anonymously stored.</li>
</ul>
</div>
</div>
</div>
<div id="BrokerNode" class="city" style="display:none">
<div class="main-content">
<h1 class="heading-4">Broker Node</h1>
<p>A network device with access to the Tangle and Blockchain</p>
<div>
<p>Responsibilities</p>
<ul>
<li>Maintain connectivity to the Tangle via mutual neighboring Nodes.</li>
<li>Provide Web Nodes and Storage Users with access to the Tangle.</li>
<li>Perform Proof of Work for new file uploads where applicable.</li>
<li>Submit the Storage User's Pearls to a buried state in the Oyster Contract.</li>
<li>Unlock discovered treasure if it's Proof of Work was performed.</li>
<li>Maintain a positive balance of ETH to unlock discovered treasure.</li>
<li>Build a reputation score on the Distributed Reputation System.</li>
<li>Broker peer-to-peer connection initiations between Web Nodes.</li>
<li>Send new Treasure Maps to Web Nodes that perform Proof of Work.</li>
</ul>
</div>
<div>
<p>Reward</p>
<ul>
<li>Earn Oyster Pearls by collecting leftovers from newly buried treasure.</li>
<li>Earn Oyster Pearls by collecting fees from newly discovered treasure.</li>
</ul>
</div>
</div>
</div>
<div id="WebNode" class="city" style="display:none">
<div class="main-content">
<h1 class="heading-4">Web Node</h1>
<p>A web browser that is visiting a website</p>
<div>
<p>Responsibilities</p>
<ul>
<li>Search through Treasure Maps via Proof of Work to discover embedded Oyster Pearls.</li>
<li>Submit discovered Treasure to a Broker Node for claiming on behalf of the corresponding
Website Owner.</li>
<li>Perform Proof of Work for Broker Nodes to get Web Node identities and new Treasure
Maps.
</li>
<li>Perform Proof of Work for Web Nodes to get Web Node identities and old Treasure
Maps.
</li>
<li>Send Web Node identities and old Treasure Maps to Web Nodes that have performed
the adequate Proof of Work.</li>
<li>Share Broker Node contracts via the Distributed Reputation System.</li>
</ul>
</div>
<div>
<p>Reward</p>
<ul>
<li>Granted access to content/goods/services from the Website Owner.</li>
<li>Pass on Proof of Work burden to other Web Nodes where applicable.</li>
</ul>
</div>
</div>
</div>
<div id="WebsiteOwner" class="city" style="display:none">
<div class="main-content">
<h1 class="heading-4">Website Owner</h1>
<p>An organization or individual that runs a website</p>
<div>
<p>Responsibilities</p>
<ul>
<li>Provide content/goods/services to Web Nodes.</li>
<li>Add the Oyster Protocol script to their website HTML.</li>
</ul>
</div>
<div>
<p>Reward</p>
<ul>
<li>Get paid in Oyster Pearls that have been discovered by Web Nodes.</li>
</ul>
</div>
</div>
</div>
<div id="Tangle" class="city" style="display:none">
<div class="main-content">
<h1 class="heading-4">Tangle</h1>
<p>A distributed ledger known as a Directed Acyclic Graph</p>
<div>
<p>Responsibilities</p>
<ul>
<li>Retain data for which the Proof of Work has been performed.</li>
<li>Geographically distribute redundant copies of data.</li>
<li>Load balance storage burden, such as with Swarm Intelligence.</li>
</ul>
</div>
<div>
<p>Reward</p>
<ul>
<li>Network experiences increased resistance against attack vectors.</li>
<li>Faster average confirmation time for transactions.</li>
</ul>
</div>
</div>
</div>
<div id="Blockchain" class="city" style="display:none">
<div class="main-content">
<h1 class="heading-4">Blockchain</h1>
<p>A distributed ledger with Smart Contract capabilities</p>
<div>
<p>Responsibilities</p>
<ul>
<li>Provide Smart Contract Framework that produces the properties inherent in Oyster
Pearls (as tokens).</li>
</ul>
</div>
<div>
<p>Reward</p>
<ul>
<li>Blockchain miners receive fees paid in ETH from the Broker Nodes.</li>
</ul>
</div>
</div>
</div>
</div>
<script>
function openCity(evt, cityName) {
var i, x, tablinks;
x = document.getElementsByClassName("city");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablink");
for (i = 0; i < x.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" title-blue", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " title-blue";
}
</script>
</div>
</div>
</div>
</div>
<a name="whitepaper">
<!-- anchor -->
</a>
<div class="section-3 section-7">
<div class="container">
<p class="paragraph-3 text-white">The Next Generation Supercomputer</p>
<h2 class="section-heading text-white">Introducing Oyster Shell (SHL)</h2>
<div class="video-iframe">
<iframe src="https://www.youtube.com/embed/of5C76y5sYU?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media"
allowfullscreen></iframe>
</div>
<h3 class="video-subheading text-white">Shell enables efficient, encrypted, low-cost internet access and peer-to-peer communication, globally. </h3>
<div class="row middle">
<div class="col-lg-4">
<div class="value value-white">
<div class="value-avatar">
<img src="assets/img/oys-item-01.svg" />
</div>
<div class="value-content">
Enables the decentralized execution of JavaScript Apps.
</div>
</div>
</div>
<div class="col-lg-4">
<div class="value value-white">
<div class="value-avatar">
<img src="assets/img/oys-item-02.svg" />
</div>
<div class="value-content">
Facilitates volatile memory, instruction exectution, and data communications.
</div>
</div>
</div>
<div class="col-lg-4">
<div class="value value-white">
<div class="value-avatar">
<img src="assets/img/oys-item-03.svg" />
</div>
<div class="value-content">
Removes the need for centralized infrastructure of ISPs.
</div>
</div>
</div>
</div>
<div class="row middle button-row">
<a class="first-child" target="_blank" href="assets/pdf/ShellWhitepaper.pdf">Read the Whitepaper</a>
<a class="second-child" target="_blank" href="https://medium.com/oysterprotocol/dawn-of-a-new-era-3ca2e2f5a1c6">Read the Announcement</a>
</div>
</div>
</div>
<div class="section-4">
<div class="container">
<h2>Our Values</h2>
<div class="row middle">
<div class="col-lg-4">
<div class="value">
<div class="value-avatar">
<img src="assets/img/value-1.png" />
</div>
<p class="value-title">Protocol-Centric Development</p>
<div class="value-border"></div>
<div class="value-content">
When projects are people-centric, they're prone to having a bad day when the people do. Oyster distinguishes itself from
other projects by having a fully specified protocol definition in the whitepaper.
<br /> Oyster engages development within the ethics of decentralization, therefore progress can
be made by anyone if it conforms with protocol specifications.
</div>
</div>
</div>
<div class="col-lg-4">
<div class="value">
<div class="value-avatar">
<img src="assets/img/value-2.png" />
</div>
<p class="value-title">Accessible Decentralization</p>
<div class="value-border"></div>
<div class="value-content">
Oyster lays the foundations for the next decentralized web. Web Nodes (website visitors) gradually peer with each other as
they hunt for Oyster Pearls (PRL). Because they favour low-latency connections with nearby
neighbors, the Oyster network becomes a performance-optimized mesh-net. Since web nodes operate
fully on JavaScript, Oyster offers developers access to a decentralized network via a common
programming language.
</div>
</div>
</div>
<div class="col-lg-4">
<div class="value">
<div class="value-avatar">
<img src="assets/img/value-3.png" />
</div>
<p class="value-title">Accessible Anywhere</p>
<div class="value-border"></div>
<div class="value-content">
Oyster is a protocol for storing data on the IOTA Tangle. All someone needs to retrieve their data is connectivity to the
Tangle and any software client that conforms with the Oyster Protocol. Connectivity to the
Tangle does not require any centralized portal or gateway; therefore Oyster is fully decentralized
with very low counterparty risk.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-5" id="core-team">
<div class="container">
<div class="blue-head" data-parallax="scroll" data-position="left" data-bleed="10" data-image-src="assets/img/bg3.png"></div>
<h2 class="section-heading light">Core Team</h2>
<div class="row middle">
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/WilliamCordes.jpg" />
</div>
<p class="team-name">Bill Cordes</p>
<p class="team-title">Chief Executive Officer</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:bill@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/wcordes" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/BrunoBlock.png" />
</div>
<p class="team-name">Bruno Block</p>
<p class="team-title">Chief Architect</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:bruno@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://github.com/brunoblock" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/TaylorFrench.jpg" />
</div>
<p class="team-name">Taylor French</p>
<p class="team-title">Design & Communications Director</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:taylor@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/taylorfrench93" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://github.com/tfrench93" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/AlexFirmani.jpg" />
</div>
<p class="team-name">Alex Firmani</p>
<p class="team-title">Chief Technical Officer</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:alex.f@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/alexfirmani" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/ChrisGarner.jpg" />
</div>
<p class="team-name">Chris Garner</p>
<p class="team-title">Advertising Evangelist at Oyster</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:chris.g@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/garnerchris" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/AaronVasquez.jpg" />
</div>
<p class="team-name">Aaron Vasquez</p>
<p class="team-title">Engineering Team Lead</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:aaron.v@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/aaronvasquezadilla" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://github.com/AaronVasquez" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/RebelFornea.jpg" />
</div>
<p class="team-name">Rebel Fornea</p>
<p class="team-title">Technical Lead</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:rebel.f@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/rebel-fornea-7640b8122/" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://github.com/rfornea" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/EdmundMai.png" />
</div>
<p class="team-name">Edmund Mai</p>
<p class="team-title">Blockchain Engineer</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:edmund.m@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/edmundmai" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://github.com/EdmundMai" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/JaredFarago.jpg" />
</div>
<p class="team-name">Jared Farago</p>
<p class="team-title">Software Engineer</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:jared.f@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://www.linkedin.com/in/jared-farago-11a09354/" target="_blank">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
<a href="https://github.com/jfarago" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/GenericPhoto.png" />
</div>
<p class="team-name">Marcel Lindig</p>
<p class="team-title">Software Engineer</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:marcel.l@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://github.com/nullpilot" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/GenericPhoto.png" />
</div>
<p class="team-name">Astor Rivera</p>
<p class="team-title">Blockchain Engineer</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:astor.r@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://github.com/Astor" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/WilliamHalunen.jpg" />
</div>
<p class="team-name">William Halunen</p>
<p class="team-title">Community Manager</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:william.h@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://telegram.me/HALUNEN" target="_blank">
<i class="fa fa-telegram" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/AleksandrKravchuk.jpg" />
</div>
<p class="team-name">Aleksandr Kravchuk</p>
<p class="team-title">Community Manager</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:alex.k@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://telegram.me/Bfpixels" target="_blank">
<i class="fa fa-telegram" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="team">
<div class="team-avatar">
<img src="assets/img/team/TimDeHaas.png" />
</div>
<p class="team-name">Tim DeHaas</p>
<p class="team-title">Community Manager</p>
<div class="team-content"></div>
<div class="team-socialIcon">
<a href="mailto:tim.d@oyster.ws">
<i class="fa fa-envelope" aria-hidden="true"></i>
</a>
<a href="https://telegram.me/MrRedPanda" target="_blank">
<i class="fa fa-telegram" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="section-6" id="token">
<div class="container">
<p>The Token</p>
<h2>Oyster Pearl (PRL)</h2>
<img class="token-img" src="assets/img/svg/oyster-logo.svg" width="200px" />
<p class="token-content">
Oyster Unlocks the Dormant Revenue Potential of Millions of Websites. PRL is the economic bridge between content publishers,
content consumers, storage providers, and storage consumers.
</p>
<div class="token-coin">
<script type="text/javascript" src="https://files.coinmarketcap.com/static/widget/currency.js" async></script>
<div class="coinmarketcap-currency-widget" data-currency="oyster-pearl" data-base="USD" data-secondary="" data-ticker="true"
data-rank="true" data-marketcap="true" data-volume="true" data-stats="USD" data-statsticker="false"></div>
</div>
<div class="token-border"></div>
<div class="row middle">
<p>Available on Exchanges</p><br/>
<div class="row middle"><a href="https://etherdelta.com/#PRL-ETH" target="_blank">
<img src="assets/img/etherdelta.png" />
</a>
<a href="https://www.kucoin.com/#/trade.pro/PRL-BTC" target="_blank">
<img src="assets/img/kucoin.png" />
</a>
<a href="https://www.coinexchange.io/market/PRL/BTC" target="_blank">
<img src="assets/img/coinexchange.png" />
</a>
<a href="https://www.cryptopia.co.nz/Exchange/?market=PRL_BTC" target="_blank">
<img src="assets/img/cryptopia-fade.png" />
</a>
<a href="https://www.coinsuper.com/trade?symbol=PRL%2FBTC" target="_blank">
<img src="assets/img/Coinsuper-fade.png" />
</a></div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container">
<img src="assets/img/perl-middle.png" />
<div class="footer-border"></div>
<div class="footer-menu">
<div class="row middle">
<a href="https://github.com/oysterprotocol" target="_blank">GITHUB</a>
<a href="assets/pdf/OysterWhitepaper.pdf" target="_blank" class="footer-link">WHITEPAPER</a>
<a href="assets/img/oyster-roadmap-v4.jpg" target="_blank" class="footer-link">ROADMAP</a>
<a href="https://t.me/oysterprotocol" target="_blank" class="footer-link">TELEGRAM</a>
<a href="https://www.reddit.com/r/oyster/" target="_blank" class="footer-link">REDDIT</a>
<a href="https://medium.com/oysterprotocol" target="_blank" class="footer-link">BLOG</a>
<a href="https://twitter.com/OysterProtocol" target="_blank" class="footer-link">TWITTER</a>
<a href="mailto:contact@oyster.ws" class="footer-link">CONTACT@OYSTER.WS</a>
</div>
</div>
</div>
</div>
<script type="text/javascript">
echo.init({
offset: 100,
throttle: 250,
unload: false,
callback: function(element, op) {
console.log(element, "has been", op + "ed");
}
});
</script>
<!-- build:js -->
<!-- <script src="assets/js/main.js"></script> -->
<!-- endbuild -->
</body>
<script type="text/javascript" src="assets/js/widget.js"></script>
</html>