This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·1444 lines (1366 loc) · 87.2 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 class="no-js" lang="en-US">
<head>
<!-- DEFAULT META TAGS -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta property="og:title" content="LTO Network">
<meta property="og:description" content="Hybrid Blockchain for Decentralized Workflows">
<meta property="og:image" content="/img/meta.png">
<meta property="og:url" content="http://lto.network/index.html">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400italic,700italic" rel="stylesheet" type="text/css">
<!-- CSS -->
<!--<link rel="stylesheet" id="default-style-css" href="files/css/style.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="fontawesome-style-css" href="files/css/font-awesome.min.css" type="text/css" media="all"/>-->
<!--link rel="stylesheet" id="ionic-icons-style-css" href="files/css/ionicons.css" type="text/css" media="all"/-->
<!--link rel="stylesheet" id="ionic-icons-style-css" href="files/css/icomoon.css" type="text/css" media="all"/-->
<!--<link rel="stylesheet" id="revolution-slider-main-css" href="files/revolution/css/settings.css" type="text/css"-->
<!--media="all"-->
<!--/>-->
<!--<link rel="stylesheet" id="revolution-slider-layer-css" href="files/revolution/css/layers.css" type="text/css"-->
<!--media="all"-->
<!--/>-->
<!--<link rel="stylesheet" id="revolution-slider-nav-css" href="files/revolution/css/navigation.css" type="text/css"-->
<!--media="all"-->
<!--/>-->
<!--<link rel="stylesheet" id="owlcarousel-css" href="files/css/owl.carousel.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="lightcase-css" href="files/css/lightcase.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="isotope-style-css" href="files/css/isotope.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="mqueries-style-css" href="files/css/mqueries.css" type="text/css" media="all"/>-->
<!-- Step Form Wizard plugin -->
<!--<link rel="stylesheet" href="files/css/step-form-wizard-all.css" type="text/css" media="screen, projection">-->
<!-- nicer scroll in steps -->
<!--<link rel="stylesheet" href="files/css/jquery.mCustomScrollbar.min.css">-->
<link rel="stylesheet" href="files/dist/compress.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="files/css/iso_bootstrap4.0.0min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<!--<link rel="stylesheet" href="files/css/style.css">-->
<!-- FAVICON -->
<link rel="shortcut icon" href="img/favicon.png" />
<!-- DOCUMENT TITLE -->
<title>LTO Network · Hybrid Blockchain for Decentralized Workflows</title>
<!-- Popup script -->
<!--script type="text/javascript" src="https://downloads.mailchimp.com/js/signup-forms/popup/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script!-->
<!-- End popup script -->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({'gtm.start':
new Date().getTime(), event: 'gtm.js'});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PBRZ65L');</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-62115237-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-62115237-2');
</script>
</head>
<body data-gr-c-s-loaded="true" class="page-is-loaded">
<!-- PAGE CONTENT -->
<div id="page-content">
<noscript>
<div class="noscript">
<p>This site requires Javascript to work, please enable Javascript in your browser or use a browser with Javascript support.
<br> See <a href="https://www.enable-javascript.com/">here</a> for help.</p>
</div>
</noscript>
<!-- HEADER -->
<header id="header" class="header-bordered header-transparent transparent-light">
<div class="header-inner clearfix">
<!--LOGO-->
<div id="logo" class="left-float">
<a href="index.html">
<img id="scroll-logo" src="img/logo/icon-purple.png"
srcset="img/logo/icon-purple.png 1x, img/logo/icon-purple.png 2x" alt="Logo Scroll">
<img id="dark-logo" src="img/logo/icon-dark-purple.png"
srcset="img/logo/icon-dark-purple.png 1x, img/logo/icon-dark-purple.png 2x"
alt="Logo Dark">
<img id="light-logo" src="img/logo/icon-white.png"
srcset="img/logo/icon-white.png 1x, img/logo/icon-white.png 2x" alt="Logo Light">
</a>
</div>
<!-- MAIN NAVIGATION -->
<div id="menu" class="right-float clearfix">
<a href="#" class="responsive-nav-toggle">
<span class="hamburger"></span>
</a>
<!--div class="flag-section">
<a href="br"><img src="img/flags/br.png">
</a>
</div!-->
<div class="menu-inner">
<nav id="main-nav">
<ul>
<!-- <li class="">
<a href="#" target="ltodemo">Demo</a>
</li> -->
</ul>
</nav>
</div>
<!-- END .menu-inner -->
</div>
<!-- END #menu -->
</div>
<!-- END .header-inner -->
</header>
<!-- HEADER END-->
<!-- STICKY BOTTOM BAR -->
<!---
<div class="sticky-bottom">
<div class="wrapper">
<div class="socialsBlock purpleSection">
<ul class="sticky-bottom__socials socialmedia-widget size-small">
<li class="telegram">
<a href="https://t.me/LTOnetwork" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/legalthings" target="_blank"></a>
</li>
<li class="linkedin">
<a href="https://www.linkedin.com/company/9269038/" target="_blank"></a>
</li>
<li class="twitter">
<a href="https://twitter.com/livecontracts" target="_blank"></a>
</li>
</ul>
</div>
<p><span>Public Sale</span><span id="bottom_countdown"></span></p>
<a class="lto-subscribe sr-button inline button-1-ghost button-small circled">Register now</a>
</div>
--->
</div>
<!-- STICKY BOTTOM BAR END -->
<!-- HERO -->
<section id="hero"
class="hero-full parallax-section">
<div class="hero-nav hero-nav--mobile">
<div class="hero-nav__menu">
<a href="index.html" class="hero-nav__menu-list hero-nav__menu-list">Home</a>
<a href="index.html#discover" class="hero-nav__menu-list">Documentation</a>
<a href="integrators.html" class="hero-nav__menu-list hero-nav__menu-list">Integrators</a>
<a href="index.html#meet-the-team" class="hero-nav__menu-list">Team</a>
<a href="timeline.html" class="hero-nav__menu-list hero-nav__menu-list">Timeline</a>
</div>
<div class="hero-nav__socials">
<a href="https://medium.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-medium"></i>
</a>
<a href="https://twitter.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/channel/UCaHcF-xterKYTKSpY4xgKiw" class="hero-nav__socials-icon"
target="_blank">
<i class="fab fa-youtube"></i>
</a>
<a href="https://www.reddit.com/r/LTONetwork/" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-reddit"></i>
</a>
<a href="https://github.com/legalthings" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://t.me/LTOnetwork" class="hero-nav__socials-icon"
target="_blank">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="https://t.me/LTOnetwork" class="hero-nav__socials-icon"
target="_blank">
<i class="fab fa-telegram"></i>
</a>
</div>
<div class="hero-nav__socials">
<a href="index_cn.html" class="hero-nav__socials-icon">
<img src="img/flags/cn.png" class="flags">
</a>
</div>
<!--div class="flag-section">
<a href="br"><img src="img/flags/br.png">
</a>
</div!-->
</div>
<div class="hero-nav">
<div class="wrapper">
<div class="hero-nav__logo">
<a href="index.html"><h1>LTO Network</h1></a>
</div>
<div class="hero-nav__menu animated">
<a href="index.html" class="hero-nav__menu-list hero-nav__menu-list">Home</a>
<a href="index.html#discover" class="hero-nav__menu-list">Documentation</a>
<a href="integrators.html" class="hero-nav__menu-list hero-nav__menu-list">Integrators</a>
<a href="index.html#meet-the-team" class="hero-nav__menu-list">Team</a>
<a href="timeline.html" class="hero-nav__menu-list hero-nav__menu-list">Timeline</a>
</div>
<div class="hero-nav__socials">
<a href="https://medium.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-medium"></i>
</a>
<a href="https://twitter.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.youtube.com/channel/UCaHcF-xterKYTKSpY4xgKiw" class="hero-nav__socials-icon"
target="_blank">
<i class="fab fa-youtube"></i>
</a>
<a href="https://www.reddit.com/r/LTONetwork/" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-reddit"></i>
</a>
<a href="https://github.com/legalthings" class="hero-nav__socials-icon" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://t.me/LTOnetwork" class="hero-nav__socials-icon"
target="_blank">
<i class="fab fa-telegram-plane"></i>
</a>
<a href="index_cn.html" class="hero-nav__socials-icon">
<img src="img/flags/cn.png" class="flags">
</a>
</div>
<div class="hero-nav__bars fa fa-bars"></div>
</div>
</div>
<div id="page-title" class="wrapper align-left">
<div class="info">
<div class="spacer-mini"></div>
<!--<h1>LegalThings One</h1>-->
<h2>Hybrid Blockchain for Decentralized Workflows</h2>
<h3 class="subtitle-1 mobile-h3">
<p>
Enabling B2B to collaborate on equal footing using trustless automated processes with GDPR and data privacy compliance: combining permissionless ad-hoc private chains with a permissionless public blockchain.
</p>
</h3>
<div class="hero-img-hdr animated fadeIn slower"></div>
<div class="spacer-small"></div>
<p class="hero__buttons">
<a href="integrators.html" class="sr-button button-3 button-small button-small-hero rounded">
<i class="fa fa-rocket"></i> Integrate our Solution
</a>
<a href="https://t.me/LTOnetwork" class="sr-button button-1 button-small button-small-hero rounded">
<i class="fab fa-telegram-plane"></i> Telegram
</a>
</p>
<!-- <a href="https://app.livecontracts.io" target="ltodemo" class="sr-button button-1 button-medium circled">
Demo
</a> -->
<!--<h4 class="subtitle-1">-->
<!--Get an intoduction to LegalThings One - <a href="#" target="_blank">Watch video</a>-->
<!--</h4>-->
<div class="spacer-small"></div>
<div class="icon-box">
<div class="icon-box-icon">
<i class="ion ion-5x ion-ribbon-b"></i>
</div>
<div class="icon-box-content">
<h5>Winner of the Blockathon by the</h5>
<h5>Dutch Ministry of Justice and Security</h5>
</div>
</div>
<div class="spacer-small"></div>
<!--div class="count-down-wrap hidden">
<h3><strong>Sale ends in</strong></h3>
<div class="count-down" data-end-date=""></div>
</div!-->
</div>
</div>
<!-- Partners & Clients !-->
<div class="hero_customers animated fadeIn delay-3s">
<div class="hero_partners align-center">
<!--<h5>Strategic partners</h5>!-->
</div>
<div class="hero_customers_container">
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/poa-network-x-legalthings-one-making-blockchains-gdpr-compliant-23d009f7cea1" target="_blank"><img style="" src="img/partners/logo_poa.svg"/></a>
</div>
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/nucypher-legalthings-one-epd-made-possible-by-live-contracts-and-re-encryption-db8cbd818ea2" target="_blank"><img style="" src="img/partners/nucypher.png"/></a>
</div>
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/where-blockchain-meets-internet-of-things-lto-network-x-cpchain-on-supply-chain-and-gdpr-e249f63dcbf1" target="_blank"><img style="" src="img/partners/cpchain_logo.svg"/></a>
</div>
</div>
<div class="hero_customers_clients">
<div class="hero_customers_clients__divider"></div>
<!--<h5>CLIENTS WHO ALREADY USE THE PLATFORM</h5>!-->
<h5>Partners & Clients</h5>
</div>
<div class="hero_customers_container">
<div class="hero_customers_container__image">
<a href="https://merin.nl/en/" target="_blank">
<img src="img/customers/merin_logo_black.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.dekra.com/en-us/home/" target="_blank">
<img style="" src="img/customers/dekra_logo_2.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.cloud9music.nl/" target="_blank">
<img src="img/customers/cloud9_logo_2.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.ilent.nl/" target="_blank">
<img src="img/customers/government_of_the_netherlands_2.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.stenarealty.com" target="_blank">
<img src="img/customers/stena.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.taxtimbre.com" target="_blank">
<img src="img/customers/taxtimbre.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.cemex.com" target="_blank">
<img src="img/customers/cemex.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.generali.com" target="_blank">
<img style="" src="img/customers/generali.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://firm24.com" target="_blank">
<img src="img/customers/firm24-color.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.osrewoningdossier.nl" target="_blank">
<img src="img/customers/osre.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.ovam.be" target="_blank">
<img src="img/customers/ovam.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.avr.nl" target="_blank">
<img src="img/customers/avr.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.indaver.be/" target="_blank">
<img src="img/customers/indaver.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.ah.nl/over-ah" target="_blank">
<img style="" src="img/customers/ah.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://cms.law" target="_blank">
<img src="img/customers/cms.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.m7re.eu" target="_blank">
<img src="img/customers/mseven.jpg"/>
</a>
</div>
</div>
<!-- !-->
<!-- END #page-title -->
</section>
<!-- HERO -->
<!-- PAGEBODY -->
<div id="what-is-legal" class="purpleSectionBg general-advantages row-section text-light">
<div class="wrapper clearfix">
<div class="column one-half row-section">
<p>Multinationals and governments invest billions of dollars in automation solutions such as ERP, BPMN and CRM to run their day-to-day processes as efficient as possible.</p>
<p>However, the moment they need to collaborate with other organizations or even between departments, these efficiencies are gone. This so called 'silo effect' is the top barrier for organizations to reach a next level of efficiency of their business processes.</p>
<p>Then along came Decentralized Ledger Technology (DLT), which has the potential to solve this problem without compromising productivity and data security.</p>
</div>
<div class="column one-third last-col">
<img src="img/about-us.png" class="about-us button-mob">
</div>
</div>
<div class="wrapper clearfix">
<blockquote class="mission round-border">LTO Network enables collaboration between multiple organizations and departments via decentralized workflows, where parties can keep using their own (legacy) systems to participate in a process.</blockquote>
</div>
</div>
<div class="spacer-mini"></div>
<div class="row-section wrapper" id="hybrid">
<div class="clearfix">
<h2 class="align-center">
<strong> Our <strong style="color:#9867cf">Hybrid</strong> Network</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-medium"></div>
<div class="column one-third align-center">
<h5> Private Data </h5>
<p>
Whether you want to protect company sensitive data, or have to comply with GDPR, data privacy is crucial when collaborating B2B.
</p>
<p>
LTO Network’s unique hybrid approach embraces privacy by design. The process is pseudonymised and private sensitive data is shared on a need-to-know basis.
</div>
<div class="column one-third align-center">
<h5> Event Chain </h5>
<p>
Each process creates an ad-hoc miniature chain. <strong>This private chain is only shared between the participants.</strong>
</p>
<p>
Rules of the collaboration are not dictated by the network, but defined in a Live Contract on a case-by-case basis.
</p>
<p>
All events in a process are securely stored on the event chain.
</p>
</div>
<div class="column one-third last-col align-center">
<h5> Global Public Chain </h5>
<p>
All nodes are connected through the LTO public chain, which is used to timestamp and anchor data and events.
</p>
<p>
The public chain is optimized for anchoring, allowing an immediate response through using the NG-protocol.
<p>
The chain can be used for decentralized workflows, as well as notarizing every type of information.
</p>
</div>
</div>
</div>
<div class="spacer-small"></div>
<div class="row-section wrapper" id="how-workflows">
<h2 class="align-center">
<strong>Decentralized Workflow Automation</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-small"></div>
<div class="column one-half">
<img src="img/decentralized-workflow.png" class="sketch-workflows">
</div>
<div class="column one-half last-col">
<div class="spacer-mini"></div>
<p>
Using blockchain technology, LTO Network enables organizations to run B2B-workflows in a decentralized way, where parties participate via their own node.
</p>
<p>
Just as in the real world, when parties conclude an agreement, the execution of this agreement needs to be take place in the correct way. LTO Network uses decentralized workflows called Live Contracts to automate these procedures. Live Contracts contain instructions for both humans and systems on the actions that need to be executed. All parties involved in the Live Contract validate each others actions and secure data submissions.
</p>
<p>
<strong>
LTO Network bursts the hype bubble and unlocks next level process efficiency. Today.
</strong>
</p>
</div>
</div>
<div class="read-more-section">
<!-- Miniature private blockchain section !-->
<div id="architecture">
<div class="row-section wrapper">
<div class="clearfix">
<h2 class="align-center">
<strong>Miniature private blockchains</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-medium"></div>
<div class="column two-third">
<div class="column one-half last-col align-center">
<h5>Horizontally scalable</h5>
<p>Nodes can simultaneously hold and handle numerous Live Contracts. Since every Live Contract forms a private chain, nodes can spin up more VMs to handle bigger loads.</p>
<!--/div!-->
<!--div class="column one-half last-col"!-->
<h5>Data privacy and GDPR</h5>
<p>Only the nodes of the participants of a particular process have access to a particular private chain. If required by law, the entire workflow with all related data can be erased. <br> <a href="https://medium.com/legalthingsone/legalthings-one-blockchain-gdpr-made-possible-68a5ce09e7ca" target="_blank">Read our full explanation here.</a></p>
</div>
<div class="column one-half next-row last-col align-center">
<img src="img/LT-2-FINAL.png" class="sketch-chains">
</div>
</div>
<div class="column one-third last-col align-center">
<h5>Peer-to-peer communication</h5>
<p>Rather than broadcasting events to the entire network, nodes send events to each other directly. This way complexity and latency are reduced. The public permissionless chain is used for anchoring, ensuring immutable Proof-of-Existence.</p>
<!--/div!-->
<!--div class="column one-half next-row last-col"!-->
<h5>Event validation</h5>
<p>Each event is validated based on the rules and conditions defined in the workflow. Actions that are not allowed will be rejected by all other participants.</p>
</div>
</div>
<div class="spacer-medium"></div>
<!-- Inside a node section !-->
<div class="clearfix">
<h2 class="align-center">
<strong>Inside a node</strong>
</h2>
<div class="h2-line"></div>
<!--h5 class="subtitle-2">A node consist of an orchestrated cluster of Docker containers, configured to scale to any size.</h5!-->
<div class="spacer-small"></div>
<div class="column one-half">
<h5>User Interface</h5>
<p>
LTO makes it easy to connect your existing systems and applications to a process, since each node exposes a JSON REST API.
</p>
<h5>Event Service</h5>
<p>
The heart of the application layer is the event service. It handles all incoming events, delegating further processing to the application services.
</p>
<h5>Application Services</h5>
<p>
The application layer contains a number of services - like the workflow manager - designed to perform a specific task. Custom services may be added to the application layer. </p>
<h5>Message Queue for Private Blockchain</h5>
<p>Decoupling ensures a stable system even in case of bad connectivity or a high load. The message queue is the communication layer for the private chain. Two simple services manage all inbound and outbound events.
</p>
</div>
<div class="column one-half last-col">
<img src="img/inside-node.png" class="sketch-architecture">
</div>
</div>
</div>
</div>
<!-- Anchoring Section -->
<div class="row-section wrapper">
<div class="clearfix">
<h2 class="align-center">
<strong> Anchoring on <br> Permissionless Public Blockchain </strong>
</h2>
<div class="h2-line"></div>
<h5 class="subtitle-2">
Most public blockchains primarily focus on smart contracts and scripted logic, making them slow, inefficient and overly expensive for simple transactions like anchoring. We follow logic similar to Bitcoin’s SegWit; meaning that not all data needs to be kept by all nodes forever.
</h5>
<div class="spacer-medium"></div>
<div class="column two-third">
<div class="column one-half align-center">
<h5> Anchored in 3 seconds </h5>
<p>
Using the NG protocol, the network pre-approves transactions every 3 seconds. With other anchoring solutions you have to wait up to 20 minutes for a response.
</p>
</div>
<div class="column one-half last-col align-center">
<h5> Summary Blocks </h5>
<p>
With other public blockchains, the required disk space tends to be high, meaning synchronizing from genesis can costs days. With LTO, a summary block is generated each day, after which a node may delete the individual transactions.
</p>
</div>
</div>
<div class="column one-third last-col align-center">
<h5> Simple JSON REST API </h5>
<p>
Every LTO node has a JSON REST API. Integrating anchoring into your application is as simple as creating a SHA hash or your document or data and posting it with a single HTTP request.
</p>
</div>
</div>
<div class="align-center">
<div class="spacer-small"></div>
<a href="http://lto-anchor.eu-west-1.elasticbeanstalk.com/api-docs/" class="sr-button button-1 button-tiny rounded"><i class="fas fa-plug"></i> Try the Anchoring REST API</a>
</div>
</div>
</div>
<div class="align-center">
<a id="read-more-section" class="sr-button inline button-1 button-medium rounded"><i class="fa fa-arrow-down"></i>Read More</a> <!-- Expand Read more button !-->
</div>
</div>
<!-- Whitepaper section !-->
<div class="spacer-small"></div>
<hr class="pretty-hr button-mob">
<div class="spacer-small"></div>
<div class="" id="discover">
<div class="wrapper">
<h2 class="align-center">
<strong>Documentation</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-small"></div>
<div class="discover-block">
<!-- DISCOVER 1!-->
<div class="discover-block__element round-border wiki">
<div class="discover-block__image button-mob">
<img src="img/icons/analyze.svg" class="blog-media__icon" alt="Visionary whitepaper">
</div>
<div class="discover-block__info">
<div class="discover-block__title">
Published papers
</div>
<div class="discover-block__text">
<strong>Visionary</strong>
<div class="lang">
<i class="fa fa-arrow-right">
<a href="documents/LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/en.png" class="flags-doc" alt="English"></a>
<a href="documents/RU-LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/ru.png" class="flags-doc" alt="Russian"></a>
<a href="documents/CN-LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/cn.png" class="flags-doc" alt="Chinese"></a>
<a href="documents/KR-LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/kr.png" class="flags-doc" alt="Korean"></a>
</i>
</div>
<strong>Technical</strong>
<div class="lang">
<i class="fa fa-arrow-right">
<a href="documents/LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/en.png" class="flags-doc" alt="English"></a>
<a href="documents/RU-LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/ru.png" class="flags-doc" alt="Russian"></a>
<a href="documents/CN-LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/cn.png" class="flags-doc" alt="Chinese"></a>
<a href="documents/KR-LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/kr.png" class="flags-doc" alt="Korean"></a>
</i>
</div>
<strong>Token Economy</strong>
<div class="lang"><i class="fa fa-arrow-right">
<a href="documents/LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/en.png" class="flags-doc" alt="English"></a>
<a href="documents/RU-LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/ru.png" class="flags-doc" alt="Russian"></a>
<a href="documents/CN-LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/cn.png" class="flags-doc" alt="Chinese"></a>
<a href="documents/KR-LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/kr.png" class="flags-doc" alt="Korean"></a>
</i>
</div>
</div>
</div>
</div>
<!-- END DISCOVER 1 !-->
<!-- DISCOVER 2 !-->
<div class="discover-block__element round-border wiki">
<div class="discover-block__image button-mob">
<img src="img/icons/connect.svg" class="blog-media__icon" alt="Visionary whitepaper">
</div>
<div class="discover-block__info">
<div class="discover-block__title">
Network information
</div>
<div class="discover-block__text">
<p>
<strong>LTO Blockchain</strong> <br>
<a href="https://explorer.lto.network" target="_blank"><i class="fa fa-arrow-right"></i> Block explorer</a><br>
<a href="https://wallet.lto.network" target="_blank"><i class="fa fa-arrow-right"></i> Wallet</a>
</p>
<p>
<strong>Community Nodes</strong><br>
<a href="https://lto.banteg.xyz" target="_blank"><i class="fa fa-arrow-right"></i> Stake overview</a><br>
</p>
</div>
</div>
</div>
<!-- END DISCOVER 2 !-->
<!-- DISCOVER 3 !-->
<div class="discover-block__element round-border wiki">
<div class="discover-block__image button-mob">
<img src="img/icons/integrate.svg" class="blog-media__icon" alt="Technical paper">
</div>
<div class="discover-block__info">
<div class="discover-block__title">
Technical
</div>
<div class="discover-block__text">
<p>
<strong>General information</strong> <br>
<a href="https://github.com/legalthings/lto" target="_blank"><i class="fa fa-arrow-right"></i> LTO Network Github</a>
</p>
<p>
<strong>Setting up a Node</strong><br>
<a href="https://medium.com/@jayjaynl/extensive-guide-to-a-secure-lto-network-public-node-setup-33053a4370c8" target="_blank"><i class="fa fa-arrow-right"></i> UNIX guide</a><br>
<a href="https://telegra.ph/LTO-node-setup-Sander-01-22" target="_blank"><i class="fa fa-arrow-right"></i> WIN10 guide</a>
</p>
</div>
</div>
</div>
<!-- END DISCOVER 3 !-->
</div>
<div class="discover-bottom text-light">
<div class="discover-bottom__text">
<div class="discover-bottom__title">
Want to know more?
</div>
<div class="discover-bottom__subtitle">
Get in touch with us.
</div>
</div>
<div class="discover-bottom__buttons">
<a href="https://t.me/LTOnetwork" class="sr-button button-1 button-medium rounded">
<i class="fab fa-telegram-plane button-mob"></i>
Join our Telegram
</a>
</div>
</div>
</div>
</div>
<div class="row-section wrapper" id="clients">
<h2 class="align-center">
<strong>Our clients</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-small"></div>
<div class="column one-half">
<div id="customer-logos"></div>
</div>
<div class="column one-half last-col">
<div class="spacer-mini"></div>
<p>
LTO Network has been servicing clients from various industries since 2014. For over a year our focus has been on real-world decentralized workflow applications for enterprises, governments and standalone projects.
</p>
<p>
LTO Network helps your organization drive transparency and efficiency while maintaining legal compliance and cutting down operational costs.
</p>
<p><strong>
Want to learn how we can help you kick-start your organizational blockchain journey?
</strong>
</p>
<p>
<a href="mailto:[email protected]" target="_blank"class="sr-button button-1 button-tiny rounded">Get in touch with us!</a>
</p>
</div>
</div>
<hr class="pretty-hr">
<!--div class="purple-divider fullwidth-section text-light top-quotes-block parallax-section" data-parallax-image="img/quote_pic.jpg"></div!-->
<div class="row-section wrapper" id="in-the-press">
<h2 class="align-center">
<strong>In the press</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-mini"></div>
<div id="media-logos"></div>
<div class="media-slider"></div>
<div class="spacer-small"></div>
<!-- Medium section-->
<div class="bootstrap">
<section class="section medium" id="blog">
<div class="container">
<!---->
<div class="section-content" id="blogContent">
<div class="row" id="jsonContent"></div>
</div>
<!-- /#blogContent-->
<div class="discover-bottom__buttons align-center">
<a href="https://medium.com/legalthingsone" class="sr-button button-1 button-medium rounded">
<i class="fab fa-medium-m"></i>
Read more articles
</a>
</div>
<!--div class="align-center">
<div class="button-container button-slide-vertical">
<div class="slider-vertical">
<a href="https://medium.com/legalthingsone" class="button">
<i class="fa fa-medium front"></i>
<i class="back">Read more</i>
</a>
</div>
</div>
</div!-->
<!--div class="align center text-center sr-button button-1 button-medium circled"><a class="btn btn-dark" id="loadBlogPosts" href="https://medium.com/legalthingsone">View All<span class="fa fa-angle-double-right"></span></a></div>!-->
<!-- /.container-->
</section>
</div>
<!-- Medium section-->
</div>
<!-- FIRST ROW TEAM !-->
<hr class="pretty-hr">
<div class="spacer-small"></div>
<div class="team-container" id="meet-the-team">
<div class="wrapper row-section team-section">
<h2 class="align-center">
<strong>Meet our Team</strong>
</h2>
<div class="h2-line"></div>
<div class="spacer-small"></div>
<blockquote class="mission round-border">Our mission is to provide technology which fights bureaucracy, fraud and nepotism. A problem that plagues so many organizations, industries and governments. We believe that privacy and transparency are not mutually exclusive and are willing to prove it.</blockquote>
<div class="spacer-medium"></div>
<div class="column-section clearfix founders">
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/rschmitz/" class="team-image" target="_blank">
<img src="img/team/round_version/rick_schmitz.png" alt="Rick Schmitz - LTO Network">
<!--img class="one" src="img/team/round_version/rick_schmitz.png" alt="Rick Schmitz - LegalThings"!-->
<!--img class="two" src="img/team/round_version/rick_schmitz_b.png" alt="Rick Schmitz - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Rick Schmitz</strong>
</h5>
<h6 class="subtitle-2">CEO</h6>
<div class="team-bio">
Rick has been a Private Equity and M&A Tax lawyer at both <strong>PwC</strong> and <strong>Deloitte</strong>. Rick is also the founder of the successful Dutch startup Firm24 and LegalThings.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/rschmitz/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/arnolddaniels/" class="team-image" target="_blank">
<img src="img/team/round_version/arnold_daniels.png" alt="Arnold Daniels - LTO Network">
<!--img class="one" src="img/team/round_version/arnold_daniels.png" alt="Arnold Daniels - LegalThings"!-->
<!--img class="two" src="img/team/round_version/arnold_daniels_b.png" alt="Arnold Daniels - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Arnold Daniels</strong>
</h5>
<h6 class="subtitle-2">Lead Architect</h6>
<div class="team-bio">
Arnold is a software engineer with over 20 years of experience and a certified AWS architect. Arnold is a former Lead Software Engineer at <strong>Cloud9 IDE</strong> (acquired by Amazon in 2016).
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/arnolddaniels/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/jasny" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/migchelsen/" class="team-image" target="_blank">
<img src="img/team/round_version/martijn_migchelsen.png" alt="Martijn Migchelsen - LTO Network">
<!--img class="one" src="img/team/round_version/martijn_migchelsen.png" alt="Martijn Migchelsen - LegalThings"!-->
<!--img class="two" src="img/team/round_version/martijn_migchelsen_b.png" alt="Martijn Migchelsen - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Martijn Migchelsen</strong>
</h5>
<h6 class="subtitle-2">CFO & COO</h6>
<div class="team-bio">
Martijn worked as a Corporate Finance Advisor at <strong>PwC</strong> where he was part of the Technology sector team. He is also the co-founder of the successful Dutch startup Firm24 as well as LegalThings.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/migchelsen/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center last-col">
<a href="https://www.linkedin.com/in/svenstam/" class="team-image" target="_blank">
<img src="img/team/round_version/sven_stam.png" alt="Sven Stam - LTO Network">
<!--img class="one" src="img/team/round_version/sven_stam.png" alt="Sven Stam - LegalThings"!-->
<!--img class="two" src="img/team/round_version/sven_stam_b.png" alt="Sven Stam - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Sven Stam</strong>
</h5>
<h6 class="subtitle-2">CTO</h6>
<div class="team-bio">
Sven has 15+ years of experience. He holds a masters degree in Artificial Intelligence with a specialization in <strong>Distributed Systems</strong>.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/svenstam/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/sven4ask" target="_blank"></a>
</li>
</ul>
</div>
</div>
</div>
<!-- END First Row TEAM !-->
<!-- TEAM Second Row !-->
<div class="spacer-small"></div>
<div class="column-section clearfix founders">
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/martijnbroersma/" class="team-image" target="_blank">
<img src="img/team/round_version/martijn_broersma.png" alt="Martijn Broersma - LTO Network">
<!--img class="one" src="img/team/round_version/sven_stam.png" alt="Sven Stam - LegalThings"!-->
<!--img class="two" src="img/team/round_version/sven_stam_b.png" alt="Sven Stam - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Martijn Broersma</strong>
</h5>
<h6 class="subtitle-2">VP Operations</h6>
<div class="team-bio">
Martijn previously worked as a <strong>lawyer</strong> at Firm24. He is specialized in automating complex (legal) structures and workflows and oversees LegalThings' daily operations.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/martijnbroersma/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/ivangolovko/" class="team-image" target="_blank">
<!--img src="img/team/round_version/ivan.png" alt="Ivan Golovko - LegalThings"!-->
<img src="img/team/round_version/ivan.png" alt="Ivan Golovko - LTO Network">
<!--img class="one" src="img/team/round_version/ivan.png" alt="Ivan Golovko - LegalThings"!-->
<!--img class="two" src="img/team/round_version/ivan_b.png" alt="Ivan Golovko - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Ivan Golovko</strong>
</h5>
<h6 class="subtitle-2">Strategy & Investor Relations</h6>
<div class="team-bio">
Ivan is co-founder of <strong>Distributed Fund</strong> and <strong>Distributed Alliance</strong>, and is also advisor to <strong>VITE</strong>. Former CMO of ICODrops. Ivan brings his experience in product positioning, community management and investor relations.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/ivangolovko/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/moesjarraf/" class="team-image" target="_blank">
<img src="img/team/round_version/moesjarraf_jahangier.png" alt="Moesjarraf Jahangier - LTO Network">
<!--img class="one" src="img/team/round_version/arnold_daniels.png" alt="Arnold Daniels - LegalThings"!-->
<!--img class="two" src="img/team/round_version/arnold_daniels_b.png" alt="Arnold Daniels - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Moesjarraf Jahangier</strong>
</h5>
<h6 class="subtitle-2">Senior Backend Developer</h6>
<div class="team-bio">
Moesjarraf is one of main engines driving LegalThings development. He created a large part of the services around LegalThings node.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/moesjarraf/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/moesjarraf" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center last-col">
<a href="https://www.linkedin.com/in/yevhen-horbachov-0b601756/" class="team-image" target="_blank">
<img src="img/team/round_version/yevhen_horbachov.png" alt="Yevhen Horbachov - LTO Network">
<!--img class="one" src="img/team/round_version/martijn_migchelsen.png" alt="Martijn Migchelsen - LegalThings"!-->
<!--img class="two" src="img/team/round_version/martijn_migchelsen_b.png" alt="Martijn Migchelsen - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Yevhen Horbachov</strong>
</h5>
<h6 class="subtitle-2">Lead Frontend Developer</h6>
<div class="team-bio">
Yevhen has over 15 years of development experience in which he led the front end team of the <strong>European Patent Office</strong>, he is currently in charge of the LegalThings frontend development.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">