forked from whiteblock/whiteblock.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1180 lines (1129 loc) · 59.6 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
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zxx">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122296934-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-122296934-1');
</script>
<!-- Metas -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Cache-control" content="public">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="keywords" content="whiteblock, blockchain testing platform, blockchain testing, dapp testing" />
<meta name="description" content="Whiteblock is a blockchain testing company based in Los Angeles. The Whiteblock platform allows users to quickly test the performance of blockchain protocols and dapps." />
<meta name="author" content="Whiteblock" />
<!-- Title -->
<title>Whiteblock Blockchain Testing</title>
<!-- Favicon -->
<link rel="shortcut icon" href="img/whiteblock-favicon.jpg" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800" rel="stylesheet">
<!-- Plugins -->
<link rel="stylesheet" href="css/plugins.css" />
<!-- Core Style Css -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- ==== Start Loading -->
<div class="loading-logo">
<div class="middle"> </div>
</div>
<!-- End Loading ==== -->
<!-- ===== Start Navbar -->
<nav class="navbar navbar-expand-lg">
<div class="container">
<!-- Logo -->
<a class="logo" href="#" data-scroll-nav="0">
<img src="img/whiteblock-logo-light.png" alt="whiteblock blockchain testing logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"><i class="fas fa-bars"></i></span>
</button>
<!-- navbar links -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#hero" data-scroll-nav="1">Overview</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#serv-tabs" data-scroll-nav="2">Solutions</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#press" data-scroll-nav="3">Press</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#library" data-scroll-nav="4">Library</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#blog" data-scroll-nav="5">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#team" data-scroll-nav="6">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact" data-scroll-nav="7">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://docs.whiteblock.io">Docs</a>
</li>
<!-- Button to Open the Modal -->
<div class="work-btn">
<button type="button" data-toggle="modal" data-target="#myModal">
<span>Work With Us</span>
</button>
</div>
</ul>
</div>
</div>
</nav>
<!-- End Navbar ==== -->
<!-- ==== Contact form Pop up -->
<section class="contact">
<div class="container-fluid">
<div class="row">
<div class="modal fade" id="myModal">
<div class="modal-dialog">
<div class="modal-content contact-form">
<div class="controls">
<form class="form" id="contact-form" method="post" action="https://formspree.io/[email protected]">
<div class="section-head modal-header">
<h4 class="modal-title">Work With Us</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<div class="col-12">
<div class="form-group">
<input id="form_name" type="text" name="name" placeholder="Name"
required="required">
</div>
</div>
<div class="col-12">
<div class="form-group">
<input id="form_email" type="email" name="email" placeholder="Email"
required="required">
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<textarea id="form_message" name="message" placeholder="Message" rows="4"
required="required"></textarea>
</div>
</div>
<div class="col-md-12 text-center">
<button type="submit"><span>Send Message</span></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Contact form Pop up ==== -->
<!-- ==== Start Header -->
<header class="header valign bg-img" data-scroll-index="0" data-overlay-dark="4" data-background="img/mountains.jpg">
<!-- particles -->
<div id="particles-js"></div>
<div class="container">
<div class="row justify-content-center">
<div class="full-width text-center caption mt-50">
<h3>THE SCALABLE BLOCKCHAIN TESTING PLATFORM</h3>
<h1 class="cd-headline clip">
<span class="blc">Whiteblock </span>
</h1> <br>
</div>
<!-- Begin MailChimp Signup Form -->
<div class="email-subscribe full-width text-center">
<h4> SIGN UP FOR EARLY ACCESS </h4> <br>
<div class="email-subscribe-form">
<form action="https://whiteblock.us17.list-manage.com/subscribe/post-json?u=a27d6187752a19dbe98b0f944&id=16fb002c89"
method="get" id="subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank"
novalidate>
<div class="row">
<div class=" col-12 col-md-10">
<input type="email" value="" name="EMAIL" class="email" placeholder="email address"
required>
</div>
<div class="col-12 col-md-2">
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text"
name="b_a27d6187752a19dbe98b0f944_16fb002c89" tabindex="-1" value=""></div>
<div class="sub-btn"><input type="submit" value="Subscribe" name="subscribe"
onclick="toaster()"></div>
</div>
</div>
</form>
<div class="" id="subscribe-result"></div>
</div>
</div>
<!--End mc_embed_signup-->
</div>
</div>
<div class="arrow">
<a href="#" data-scroll-nav="1">
<i class="fas fa-chevron-down"></i>
</a>
</div>
</header>
<!-- End Header ==== -->
<!-- ==== Start Hero -->
<section class="hero section-padding pb-0" data-scroll-index="1">
<div class="container">
<div class="row">
<div class="offset-lg-2 col-lg-8 text-center mb-80">
<h5 class="extra-text"> <span>Whiteblock</span> is a <span>blockchain testing platform</span> that
helps development teams validate
performance and deploy distributed ledger technologies faster. </h5>
</div>
<div class="col-lg-7">
<div class="mission mb-30">
<div class="section-head mb-30">
<h4> Overview
</h4>
</div>
<h5> Blockchain Testing-as-a-Service (BTaaS) </h5> <br>
<p>As we prepare for the commercial launch of our blockchain testing Platform-as-a-Service
(PaaS), Whiteblock is offering Blockchain Testing-as-a-Service (BTaaS) for select
clientele. Using
the same proprietary tooling, the BTaaS team can provision a test network on the Whiteblock
platform to run a series of performance tests according to client specification. Sample
tests
include measuring transactional throughput, analyzing fault tolerance, and observing the
performance impact a variety of scenarios could present to blockchain protocols and
decentralized
applications. Detailed reports and analysis are provided to outline test results and other
findings.
</p>
</div>
</div>
<div class="embed-responsive embed-responsive-16by9 col-lg-5">
<iframe class="embed-responsive-item" src="https://player.vimeo.com/video/267326283"
webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</div>
</div>
<div class="use bg-gray pt-80 pb-50 mt-80">
<div class="container">
<h4> Use Cases </h4> <br> <br>
<div class="row">
<div class="col-lg-4">
<div class="item">
<span class="icon"><i class="icofont icofont-network"></i></span>
<h6>System Architects</h6>
<p>Prove the scalability of your blockchain for users and investors, accelerate your time
to market.</p>
</div>
</div>
<div class="col-lg-4">
<div class="item">
<span class="icon"><i class="icofont icofont-ui-browser"></i></span>
<h6>DApp Developers</h6>
<p>Benchmark blockchain protocols to validate your DApp performance with different networks
and
use cases.</p>
</div>
</div>
<div class="col-lg-4">
<div class="item">
<span class="icon"><i class="icofont icofont-chart-histogram-alt"></i></span>
<h6>Blockchain for Enterprise</h6>
<p>Test protocols and smart contracts at scale. Validate quality and resilience of emerging
blockchain
solutions.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Hero ==== -->
<!-- ==== Start Services Tabs -->
<section class="serv-tabs section-padding bg-img" data-overlay-dark="7" data-background="img/mountains.jpg"
data-scroll-index="2">
<div class="container">
<div class="row">
<div class="section-head col-sm-12">
<h4>
<span>Blockchain Testing</span><br> Solutions
</h4>
</div>
<div class="tabs col-sm-12">
<div class="content">
<div id="tab-1-content" class="tab-item curent">
<div class="row">
<div class="col-9">
<div class="item bord">
<p>Simulate a fully-functional test network in minutes that behaves and
responds identically
to a live production network. Emulate links between nodes to replicate
ideal
or suboptimal network conditions.</p>
</div>
</div>
<div class="col-3">
<div class="item special">
<img src="img/solution/perf.png" alt="Performance Icon for Whiteblock Blockchain Testing Platform">
</div>
</div>
</div>
</div>
<div id="tab-2-content" class="tab-item">
<div class="row">
<div class="col-9">
<div class="item bord">
<p>Validate and troubleshoot the performance of decentralized applications,
changes
to infrastructure, protocols, and consensus algorithms prior to deployment.</p>
</div>
</div>
<div class="col-3">
<div class="item special">
<img src="img/solution/opt.png" alt="Optimize Icon for Whiteblock Blockchain Testing Platform">
</div>
</div>
</div>
</div>
<div id="tab-3-content" class="tab-item">
<div class="row">
<div class="col-9">
<div class="item bord">
<p>Quickly spin up a synchronous mesh network with thousands of configurable
nodes that
can interact, process transactions. and automate over 100,000 transactions
per
second in real-time.</p>
</div>
</div>
<div class="col-3">
<div class="item special">
<img src="img/solution/scale.png" alt="Scale Icon for Whiteblock Blockchain Testing Platform">
</div>
</div>
</div>
</div>
<div id="tab-4-content" class="tab-item">
<div class="row">
<div class="col-9">
<div class="item bord">
<p>Observe the performance of blockchain systems and decentralized applications
in a
controlled environment. Identify performance issues, bugs, and errors
before
it’s too late.</p>
</div>
</div>
<div class="col-3">
<div class="item special">
<img src="img/solution/eval.png" alt="Evaluate Icon for Whiteblock Blockchain Testing Platform">
</div>
</div>
</div>
</div>
</div>
<div class="tabs-icon row">
<div id="tab-1" class="col-md-3 col-sm-6 col-6 active item">
<div>
<span class="icon"><i class="icofont icofont-automation"></i></span>
<h6>Perform</h6>
</div>
</div>
<div id="tab-2" class="col-md-3 col-sm-6 col-6 item">
<div>
<span class="icon"><i class="icofont icofont-gears"></i></span>
<h6>Optimize</h6>
</div>
</div>
<div id="tab-3" class="col-md-3 col-sm-6 col-6 item">
<div>
<span class="icon"><i class="icofont icofont-ui-social-link"></i></span>
<h6>Scale</h6>
</div>
</div>
<div id="tab-4" class="col-md-3 col-sm-6 col-6 item">
<div>
<span class="icon"><i class="icofont icofont-stock-search"></i></span>
<h6>Evaluate</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Tabs ==== -->
<!-- ==== Start Press Releases -->
<section class="blog section-padding" data-scroll-index="3">
<div class="container">
<div class="row">
<div class="section-head col-sm-12">
<h4> <span>Press</span> <br>Releases</h4>
</div>
<div class="col-lg-6 col-12">
<div style="height: 200px;" class="item mb-50">
<div class="content">
<span class="tag">Nov 1, 2018</span>
<h5><a href="https://www.prnewswire.com/news-releases/whiteblock-completes-industrys-first-eos-benchmark-testing-and-blockchain-investigation-300742130.html"
target="_blank">
Whiteblock completes industry’s first EOS benchmark testing and blockchain
investigation
</a>
</h5>
<p style="margin-left: 10px;"> Whiteblock, Inc. announced today that they have completed
the first independent benchmark testing of the EOS Software.</p>
<a style="margin: 20px 0px 0px 10px;" href="https://www.prnewswire.com/news-releases/whiteblock-completes-industrys-first-eos-benchmark-testing-and-blockchain-investigation-300742130.html"
target="_blank">
Read More
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div style="height: 220px;" class="item mb-30">
<div class="content">
<span class="tag">July 12, 2018</span>
<h5><a href="https://www.prnewswire.com/news-releases/whiteblock-performance-testing-validates-blockchain-scalability-300679883.html"
target="_blank">
Whiteblock Performance Testing Validates Blockchain Scalability with Ubiq
Technologies
</a>
</h5>
<p style="margin-left: 10px;">Whiteblock Inc., the world's first blockchain testing
company, today announced completion of a performance analysis report
conducted for their latest client, Ubiq Technologies.
</p>
<a style="margin: 20px 0px 0px 10px;" href="https://www.prnewswire.com/news-releases/whiteblock-performance-testing-validates-blockchain-scalability-300679883.html"
target="_blank">
Read More
</a>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div style="height: 200px;" class="item mb-50">
<div class="content">
<span class="tag">May 03, 2018</span>
<h5><a href="https://www.prnewswire.com/news-releases/whiteblock-debuts-with-worlds-first-scalable-testing-service-for-blockchain-at-edcon-toronto-300642144.html"
target="_blank">
Whiteblock Debuts with World's First Scalable Testing Service for Blockchain at
EDCON Toronto
</a>
</h5>
<p style="margin-left: 10px;">Whiteblock Inc. debuted today by announcing its blockchain
testing-as-a-service (BTaaS), the world's first scalable test system for blockchain and
enterprise DLT developers.
</p>
<a style="margin: 20px 0px 0px 10px;" href="https://www.prnewswire.com/news-releases/whiteblock-debuts-with-worlds-first-scalable-testing-service-for-blockchain-at-edcon-toronto-300642144.html"
target="_blank">
Read More
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Press releases ==== -->
<!-- ===== Media -->
<section class="clients section-padding pt-80 bg-gray">
<div class="container">
<div class="row justify-content-center">
<div class="section-head platform-head col-sm-12">
<h4><span></span> Media</h4>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.ccn.com/interview-researcher-argues-eos-isnt-a-blockchain-just-a-distributed-database/"
target="_blank">
<img src="img/press/ccn.png" alt="Cryptocurrency News Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://thenextweb.com/hardfork/2018/11/01/eos-blockchain-benchmark/" target="_blank">
<img src="img/press/tnweb.png" alt="The Next Web Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://cointelegraph.com/news/eos-proves-yet-again-that-decentralization-is-not-its-priority/"
target="_blank">
<img src="img/press/cointelegraph.png" alt="The Coin Telegraph Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.enterprisetimes.co.uk/2018/05/09/btaas-blockchain-testing-as-a-service/"
target="_blank">
<img src="img/press/enterprise2.png" alt="Enterprise Times Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://digitalla.net/blockchaindevelopers/" target="_blank">
<img src="img/press/digitalla2.png" alt="Digital LA Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.cryptoninjas.net/2018/05/03/whiteblock-debuts-their-scalable-testing-service-for-blockchain/"
target="_blank">
<img src="img/press/cryptoninja2.png" alt="Crypto Ninjas Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://bitcoinexchangeguide.com/whiteblocks-scalable-testing-service-for-blockchain-shown-at-edcon-toronto/"
target="_blank">
<img src="img/press/bitcoinexchangeguide.png" alt="Bitcoin Exchange Guide Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://bcfocus.com/blockchain-news/whiteblock-reveals-with-worlds-first-scalable-testing-service-for-blockchain/7847/"
target="_blank">
<img src="img/press/bcfocus2.png" alt="BC Focus Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="http://allcoinsnews.com/2018/07/14/new-blockchain-scalability-validated-by-performance-testing/"
target="_blank">
<img src="img/press/allcoinsnews.png" alt="All Coins News Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.prnewswire.com/news-releases/whiteblock-performance-testing-validates-blockchain-scalability-300679883.html"
target="_blank">
<img src="img/press/prnewswire.png" alt="PR Newswire Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.cmg.org/event/webinar-how-to-effectively-implement-and-manage-blockchain-performance-engineering-presented-by-zak-cole-cto-whiteblock/"
target="_blank">
<img src="img/press/cmg2.png" alt="CMG Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.neotys.com/performance-advisory-council/pac-2017/zak_cole" target="_blank">
<img src="img/press/pac2.png" alt="PAC Logo">
</a>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</section>
<!-- End Press ==== -->
<!-- ====Clients and Partners -->
<section class="clients section-padding pt-40 pb-20 bg-gray">
<div class="container">
<div class="row justify-content-center">
<div class="section-head client-head col-sm-12">
<h4>
<span>Select</span><br> Clients & Partners
</h4>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://consensys.net/" target="_blank">
<img src="img/client/consensys.png" alt="Consensys Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.ethereum.org/foundation" target="_blank">
<img src="img/client/eth-foundation.png" alt="Ethereum Foundation Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.hyperledger.org/" target="_blank">
<img src="img/client/hyperledger.png" alt="Hyperledger Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.linuxfoundation.org/" target="_blank">
<img src="img/client/linux.png" alt="Linux Foundation Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://entethalliance.org/" target="_blank">
<img src="img/client/eea.png" alt="Enterprise Ethereum Alliance Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://ubiqsmart.com/" target="_blank">
<img src="img/client/ubiq.png" alt="Ubiq Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="http://apposite-tech.com/index.html" target="_blank">
<img src="img/client/apposite.png" alt="Apposite Technologies Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.syscoin.org/" target="_blank">
<img src="img/client/syscoin.png" alt="Syscoin Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.defense.gov/" target="_blank">
<img src="img/client/dod.png" alt="DoD Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://dna.fund/" target="_blank">
<img src="img/client/dna.png" alt="DNA Fund Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://ecf.network/" target="_blank">
<img src="img/client/ecf.png" alt="Ethereum Community Fund Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://www.neotys.com/" target="_blank">
<img src="img/client/neotys.png" alt="Neotys Logo">
</a>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</section>
<!-- End ORGANIZATIONS ==== -->
<!-- ==== Start Platforms -->
<div class="clients section-padding pt-40 pb-20 bg-gray">
<div class="container">
<div class="row justify-content-center">
<div class="section-head platform-head col-sm-12">
<h4><span>Supported</span><br> Platforms</h4>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/ETH" target="_blank">
<img src="img/platform/ethereum.png" alt="Ethereum Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/eos" target="_blank">
<img src="img/platform/eos.png" alt="EOS Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/bitcoin" target="_blank">
<img src="img/platform/bitcoin.png" alt="Bitcoin Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/nem.core" target="_blank">
<img src="img/platform/nem.png" alt="NEM Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/neo" target="_blank">
<img src="img/platform/neo.png" alt="NEO Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/monero" target="_blank">
<img src="img/platform/monero.png" alt="Monero Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/poa-test-setup" target="_blank">
<img src="img/platform/poa.png" alt="POA Network Blockchain Logo">
</a>
</div>
</div>
<div class="col-lg-2 col-md-3 col-sm-4 col-4">
<div class="brand">
<a href="https://github.com/Whiteblock/dcrd" target="_blank">
<img src="img/platform/decred.png" alt="Decred Blockchain Logo">
</a>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<!-- End Platforms ==== -->
<!-- ==== Start Testimonails -->
<div class="testimonails section-padding pt-80 pb-50 bg-img" data-overlay-dark="8" data-background="img/mountains.jpg">
<div class="container">
<div class="row">
<div class="col-lg-9 over">
<div class="section-head mb-50">
<h4>
<span>Our</span><br> Clients <span>say</span>
</h4>
</div>
<div class="owl-carousel owl-theme">
<div class="citem">
<p> “We’re really happy with the test results. We now know our scalability changes will
work in practice
and not just in theory. <span>These results are going to shape our future development
efforts </span> and
make it easier to demonstrate these changes to the community.” </p>
<h5> Alex Sterk </h5>
<h6> CEO of Ubiq Technologies </h6>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Testimonails ==== -->
<!-- ==== Start library -->
<section class="library section-padding pb-70" data-scroll-index="4">
<div class="container">
<div class="row">
<div class="section-head col-sm-12">
<h4><span>Our</span> <br> Library</h4>
</div>
<div class="col-lg-4 col-6">
<a href="/library/ZDAG-Analysis.pdf">
<div class="item">
<span class="icon"><i class="icofont icofont-file-exe"></i></span>
<h6>Z-DAG Performance Analysis</h6>
<p>This paper describes the testing methodologies employed by the
Whiteblock team to outline a performance
benchmarking analysis of Syscoin’s Z-DAG implementation.</p>
</div>
</a>
</div>
<div class="col-lg-4 col-6">
<a href="/library/eos-test-report.pdf">
<div class="item">
<span class="icon"><i class="icofont icofont-file-exe"></i></span>
<h6>EOS Benchmark Test</h6>
<p>As the world’s first independent benchmark of EOS, this in-depth study of the EOS system
architecture benchmarks its functional performance under a range of environmental conditions.</p>
</div>
</a>
</div>
<div class="col-lg-4 col-6">
<a href="/library/ubiq-case-study.pdf">
<div class="item">
<span class="icon"><i class="icofont icofont-file-text"></i></span>
<h6>Ubiq Case Study</h6>
<p>Ubiq engaged the Whiteblock BTaaS (Blockchain Testing-as-a-Service) team to test their
platform
and benchmark their custom difficulty algorithm against Ethereum’s. </p>
</div>
</a>
</div>
<div class="col-lg-4 col-6">
<a href="/library/ubiq-report.pdf">
<div class="item">
<span class="icon"><i class="icofont icofont-file-exe"></i></span>
<h6>Ubiq Technical Report</h6>
<p> A performance benchmarking analysis for the Ubiq blockchain platform under different
block gas
limits in terms of block time, difficulty, throughput and gas consumption. </p>
</div>
</a>
</div>
<div class="col-lg-4 col-6">
<a href="/library/analyzing-effects-network.pdf">
<div class="item">
<span class="icon"><i class="icofont icofont-file-exe"></i></span>
<h6>Analyzing the Effects of Network Latency</h6>
<p> In this paper, we analyze the effects of network latency on blockchain performance and
security
using the Whiteblock testing platform. </p>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- End Library ==== -->
<!-- ==== Start Blog -->
<section class="blog section-padding" data-scroll-index="5">
<div class="container">
<div class="row">
<div class="section-head col-sm-12">
<h4> <span>Our</span> <br> Blog</h4>
</div>
<div class="col-lg-4 col-6">
<div class="item mb-md50">
<div class="post-img">
<img src="img/blog/genesis.png" alt="Blockchain For Business image">
<div class="date">
<a href="https://medium.com/@zak_84462/introducing-genesis-blockchain-testing-network-fde9df4fbb7a"
target="_blank">
<span>Nov 27</span>
<span>2018</span>
</a>
</div>
</div>
<div class="content">
<span class="tag">Zak Cole</span>
<h5><a href="https://medium.com/@zak_84462/introducing-genesis-blockchain-testing-network-fde9df4fbb7a"
target="_blank">
Whiteblock Introduces Genesis: Blockchain Testing Network</a></h5>
</div>
</div>
</div>
<div class="col-lg-4 col-6">
<div class="item mb-md30">
<div class="post-img">
<img src="img/blog/eos-benchmark.png" alt="Whiteblock EOS Benchmark Test">
<div class="date">
<a href="https://medium.com/whiteblock/whiteblock-eos-benchmark-dabc8de33eb5" target="_blank">
<span>Nov 1</span>
<span>2018</span>
</a>
</div>
</div>
<div class="content">
<span class="tag">Eric Lim</span>
<h5><a href="https://medium.com/whiteblock/whiteblock-eos-benchmark-dabc8de33eb5" target="_blank">Whiteblock
- EOS Benchmark Test</a></h5>
</div>
</div>
</div>
<div class="col-lg-4 col-6">
<div class="item mb-md30">
<div class="post-img">
<img src="img/blog/miningbitcoin.png" alt="Mining On The Bitcoin Blockchain">
<div class="date">
<a href="https://medium.com/whiteblock/whats-up-with-mining-difficulty-on-the-bitcoin-blockchain-9b65043c24a5"
target="_blank">
<span>Nov 18</span>
<span>2017</span>
</a>
</div>
</div>
<div class="content">
<span class="tag">Zak Cole</span>
<h5><a href="https://medium.com/whiteblock/whats-up-with-mining-difficulty-on-the-bitcoin-blockchain-9b65043c24a5"
target="_blank">
What’s Up With Mining Difficulty On The Bitcoin Blockchain?</a></h5>
</div>
</div>
</div>
<div class="col-lg-4 col-6">
<div class="item mb-md50">
<div class="post-img">
<img src="img/blog/51attack.png" alt="">
<div class="date">
<a href="https://medium.com/whiteblock/51-attack-think-again-the-case-for-longer-block-times-4bb2b451a6be"
target="_blank">
<span>Jul 09</span>
<span>2018</span>
</a>
</div>
</div>
<div class="content">
<span class="tag">Trey Zhong</span>
<h5><a href="https://medium.com/whiteblock/51-attack-think-again-the-case-for-longer-block-times-4bb2b451a6be"
target="_blank">51% Attack? Think Again: The Case for Longer Block Times</a></h5>
</div>
</div>
</div>
<div class="col-lg-4 col-6">
<div class="item mb-md50">
<div class="post-img">
<img src="img/blog/maya.png" alt="Maya Angelou Blockchain Quote">
<div class="date">
<a href="https://medium.com/whiteblock/how-do-uncle-blocks-affect-blockchain-performance-9ce43c958772"
target="_blank">
<span>Jul 10</span>
<span>2018</span>
</a>
</div>
</div>
<div class="content">
<span class="tag">Zak Cole</span>
<h5><a href="https://medium.com/whiteblock/how-do-uncle-blocks-affect-blockchain-performance-9ce43c958772"
target="_blank">How do uncle blocks affect blockchain performance?</a></h5>
</div>
</div>
</div>
<div class="col-lg-4 col-6">
<div class="item mb-md50">
<div class="post-img">
<img src="img/blog/network.png" alt="Blockchain Network image">
<div class="date">
<a href="https://medium.com/whiteblock/blockchain-technology-the-network-of-the-future-28313a7961cb"
target="_blank">
<span>Nov 8</span>
<span>2017</span>
</a>
</div>
</div>
<div class="content">
<span class="tag">Zak Cole</span>
<h5><a href="https://medium.com/whiteblock/blockchain-technology-the-network-of-the-future-28313a7961cb"
target="_blank">Blockchain Technology & The Network Of The Future</a></h5>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Blog ==== -->
<!-- ==== Start Team -->
<section class="team section-padding" data-scroll-index="6">
<div class="container">
<div class="row justify-content-center">
<div class="section-head col-sm-12">
<h4> <span>Our</span><br> Team </h4>
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="titem text-center">
<div class="team-img">
<img src="img/team/zak.png" alt="Photo of Zak Cole Blockchain Founder CEO">
</div>
<div class="info">
<h6>Zak Cole</h6>
<span>Founder/CEO</span>
<div class="social">
<a href="https://twitter.com/0xzak" target="_blank"><i class="icofont icofont-social-twitter"></i></a>
<a href="https://www.linkedin.com/in/zak-cole/" target="_blank"><i class="icofont icofont-brand-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="titem text-center">
<div class="team-img">
<img src="img/team/nate.png" alt="Photo of Nathaniel Blakely Systems Developer">
</div>
<div class="info">
<h6>Nate Blakely</h6>
<span>Systems Developer</span>
<div class="social">
<a href="https://www.linkedin.com/in/nathaniel-blakely/" target="_blank"><i class="icofont icofont-brand-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4 col-sm-6">
<div class="titem text-center">
<div class="team-img">
<img src="img/team/matt.jfif" alt="Photo of Matthew Elder Software Architect">
</div>
<div class="info">
<h6>Matthew Elder</h6>