This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproof-engine.html
716 lines (669 loc) · 31.3 KB
/
proof-engine.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Upgrade your existing systems by adding proof of existence to your crucial data">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="LTO Network">
<meta property="og:description" content=" Upgrade your existing systems by adding proof of existence to your crucial data">
<meta property="og:image" content="/assets/brand/meta.png">
<meta property="og:url" content="https://lto.network/">
<title>Upgrade your existing systems by adding Proof of Existence to your crucial data - LTO Network</title>
<link rel="shortcut icon" href="assets/brand/favicon.png" />
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/components/prism-bash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/components/prism-javascript.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/components/prism-java.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/components/prism-markup-templating.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/components/prism-php.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
<script defer src="https://cdn.rawgit.com/JDMcKinstry/JavaScriptDateFormat/master/Date.format.min.js"></script>
<!-- CSS Dependencies -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/themes/prism.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.15.0/themes/prism-okaidia.min.css">
<link rel="stylesheet" href="css/bulma.min.css">
<link rel="stylesheet" href="sass/extensions/animate.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bulma-pageloader.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/css/LivIconsEvo.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://legalthings.github.io/anchor-verification-component/lto-anchor-verification/lto-anchor-verification.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<div class="sticky-header">
<div class="lto-logo">
<a href="index.html"><img src="assets/brand/logo-light.svg" width="42"></a>
</div>
<div class="lto-stats-container is-hidden-mobile">
<div class="lto-stats network">
<span class="title">Network</span>
<div class="lto-stats-inner">
<span class="image">
<div class="livicon-evo"
data-options="name: globe.svg; size: 27px; style: lines; strokeWidth: 1; strokeColor: #fff; strokeColorAction: #b3421b; strokeColorAlt: #ffc963; strokeColorAltAction: #ab69c6; fillColor: #91e9ff; fillColorAction: #ff926b; solidColor: #6C7A89; solidColorAction: #4C5A69; solidColorBgAction: #ffffff; solidColorBg: #ffffff; tryToSharpen: true">
</div>
</span>
<span class="val">
Mainnet
</span>
</div>
</div>
<div class="lto-stats transactions-today">
<span class="title">Transactions</span>
<div class="lto-stats-inner">
<span class="image">
<div class="livicon-evo"
data-options="name: clock.svg; size: 27px; style: lines; strokeWidth: 1; strokeColor: #fff; strokeColorAction: #b3421b; strokeColorAlt: #ffc963; strokeColorAltAction: #ab69c6; fillColor: #91e9ff; fillColorAction: #ff926b; solidColor: #6C7A89; solidColorAction: #4C5A69; solidColorBgAction: #ffffff; solidColorBg: #ffffff; tryToSharpen: true">
</div>
</span>
<span class="val">
<svg class="loader" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
<circle class="internal-circle" cx="60" cy="60" r="30"></circle>
<circle class="external-circle" cx="60" cy="60" r="50"></circle>
</svg>
</span>
</div>
</div>
<div class="lto-stats transactions-monthly">
<span class="title">Transactions</span>
<div class="lto-stats-inner">
<span class="image">
<div class="livicon-evo"
data-options="name: calendar.svg; size: 27px; style: lines; strokeWidth: 1; strokeColor: #fff; strokeColorAction: #b3421b; strokeColorAlt: #ffc963; strokeColorAltAction: #ab69c6; fillColor: #91e9ff; fillColorAction: #ff926b; solidColor: #6C7A89; solidColorAction: #4C5A69; solidColorBgAction: #ffffff; solidColorBg: #ffffff; tryToSharpen: true">
</div>
</span>
<span class="val">
<svg class="loader" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
<circle class="internal-circle" cx="60" cy="60" r="30"></circle>
<circle class="external-circle" cx="60" cy="60" r="50"></circle>
</svg>
</span>
</div>
</div>
<div class="lto-stats nodes">
<span class="title">Nodes</span>
<div class="lto-stats-inner">
<span class="image">
<div class="livicon-evo"
data-options="name: servers.svg; size: 27px; style: lines; strokeWidth: 1; strokeColor: #fff; strokeColorAction: #b3421b; strokeColorAlt: #ffc963; strokeColorAltAction: #ab69c6; fillColor: #91e9ff; fillColorAction: #ff926b; solidColor: #6C7A89; solidColorAction: #4C5A69; solidColorBgAction: #ffffff; solidColorBg: #ffffff; tryToSharpen: true">
</div>
</span>
<span class="val">
<svg class="loader" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg">
<circle class="internal-circle" cx="60" cy="60" r="30"></circle>
<circle class="external-circle" cx="60" cy="60" r="50"></circle>
</svg>
</span>
</div>
</div>
</div>
<div class="nav-button-container is-hidden-mobile">
<a class="nav-button active" href="https://explorer.lto.network" target="_blank">
Explorer
</a>
<a class="nav-button" href="developers.html">
Developer Area
</a>
</div>
</div>
<header class="globalNav noDropdownTransition">
<div class="container-lg">
<ul class="navRoot">
<li class="navSection primary">
<a href="./index.html"><img src="assets/brand/logo-dark.svg" width="154"></a>
<a class="rootLink item-products hasDropdown colorize" data-dropdown="products">
Products
</a>
<a class="rootLink item-usecases colorize" href="usecases.html">
Use cases
</a>
<a class="rootLink item-company hasDropdown colorize" data-dropdown="company">
About us
</a>
<a class="rootLink item-company colorize" href="https://docs.lto.network">
Community
</a>
</li>
<li class="navSection secondary">
<a class="notification rootLink item-dashboard colorize has-text-dark" data-adroll-segment="submit_two" href="https://docs.lto.network">
Community
</a>
<li class="navSection mobile">
<a class="rootLink item-mobileMenu colorize">
<h2>Menu</h2>
</a>
<div class="popup">
<div class="popupContainer">
<a class="popupCloseButton">Close</a>
<div class="mobileProducts">
<h4 class="has-text-dark">Products</h4>
<div class="mobileProductsList">
<ul>
<li>
<a class="linkContainer item-payments" href="proof-engine.html">
<div class="productLinkContent">
<span class="livicon-evo" data-options="name: gear.svg; size: 48px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true"></span>
<div class="linkDescContainer">
<h3 class="linkTitle">Proof Engine</h3>
</div>
</div>
</a>
</li>
<li>
<a class="linkContainer item-payments" href="workflow-engine.html">
<div class="productLinkContent">
<span class="livicon-evo" data-options="name: diagram.svg; size: 48px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true"></span>
<div class="linkDescContainer">
<h3 class="linkTitle">Workflow Engine</h3>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="mobileSecondaryNav">
<ul>
<li>
<a class="item-pricing has-text-dark" href="usecases.html">
Use cases
</a>
</li>
<li>
<a class="item-pricing has-text-dark" href="about-us.html">
About LTO Network
</a>
</li>
<li>
<a class="item-pricing has-text-dark" href="contact.html">
Contact us
</a>
</li>
<li>
<a class="item-pricing has-text-dark" href="https://docs.lto.network">
Community
</a>
</li>
</ul>
</div>
<a class="mobileSignIn has-text-dark" data-adroll-segment="submit_two" href="developers.html">Developer
Area</a>
</div>
</div>
</li>
</ul>
</div>
<div class="dropdownRoot">
<div class="dropdownBackground" style="transform: translateX(452px) scaleX(0.707692) scaleY(1.1075);">
<div class="alternateBackground" style="transform: translateY(255.53px);"></div>
</div>
<div class="dropdownArrow" style="transform: translateX(636px) rotate(45deg);"></div>
<div class="dropdownContainer" style="transform: translateX(452px); width: 368px; height: 443px;">
<div class="dropdownSection left" data-dropdown="products">
<div class="dropdownContent">
<div class="linkGroup">
<ul class="productsGroup">
<li>
<a class="linkContainer item-payments" href="proof-engine.html">
<div class="productLinkContent">
<span class="livicon-evo" data-options="name: gear.svg; size: 48px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true"></span>
<div class="linkDescContainer">
<h3 class="linkTitle">Proof Engine</h3>
<span class="linkSub">Upgrade your existing systems by adding proof of existence to your crucial
data.</span>
</div>
</div>
</a>
</li>
<li>
<a class="linkContainer item-payments" href="workflow-engine.html">
<div class="productLinkContent">
<span class="livicon-evo" data-options="name: diagram.svg; size: 48px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true"></span>
<div class="linkDescContainer">
<h3 class="linkTitle">Workflow Engine</h3>
<span class="linkSub">A trustless, decentralized system that lets organizations work together
efficiently.</span>
</div>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="dropdownSection right" data-dropdown="company">
<div class="dropdownContent">
<ul class="linkGroup linkList companyGroup">
<li><a class="linkContainer item-about" href="about-us.html">
<h3 class="linkTitle linkIcon">About LTO Network</h3>
</a>
</li>
<li><a class="linkContainer item-customers" href="contact.html">
<h3 class="linkTitle linkIcon">Contact
</h3>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<div class="hero is-small">
<div style="width: 100%;height: 350px;position: absolute;z-index: 0;background: #adc7fb;"></div>
<div style="width: 100%;height: 450px;position: absolute;z-index: 0;background: #adc7fb;transform: skewY(5deg);top:200px;">
</div>
<div class="hero-head">
<div class="hero-body" id="hero-body">
<div class="hero-image is-hidden-mobile">
<div class="columns">
<div class="column">
</div>
</div>
</div>
<div class="container has-text-left">
<div class="columns">
<div class="column is-half">
<h1 class="title is-size-1 has-text-white">
Proof Engine for Digital Data
</h1>
<p class="subtitle animated fadeIn has-margin-top-lg">
Upgrade your existing systems by adding proof of existence to your crucial data.
</p>
<a href="https://legalthings.github.io/anchor-verification-component/" class="button is-primary has-margin-top-sm">
<span>Try our anchoring demo</span>
</a>
</div>
<div class="column is-hidden-mobile">
<img src="./assets/hero/hero-image-pe.svg" class="slider-img animated fadeInRight">
</div>
</div>
</div>
</div>
</div>
</div>
<section class="section is-medium has-background-white">
<div class="container">
<h2 class="title is-size-2 has-text-dark has-text-centered">Developers & Integrators Favorite</h2>
<div class="h1-line is-centered"></div>
<h3 class="subtitle has-text-centered">Use LTO Network to secure documents, records, e-mails and other valuable
data.</h3>
<div class="columns has-margin-top-xl">
<div class="column">
<h3 class="title has-text-dark">Try our interactive demo</h3>
<lto-anchor-verification style="width: auto" host="https://anchor-demo.lto.network"></lto-anchor-verification>
</div>
<div class="column">
<div class="content bottom-cta has-margin-top-md">
<ul class="no-list-style">
<li>
<div class="livicon-evo" data-options="name: check-alt.svg; size: 32px; style: original; tryToSharpen: true"></div>
<p class="is-size-5 has-text-dark">Extensive documentation</p>
</li>
<li>
<div class="livicon-evo" data-options="name: check-alt.svg; size: 32px; style: original; tryToSharpen: true"></div>
<p class="is-size-5 has-text-dark">Easy set up with Docker</p>
</li>
<li>
<div class="livicon-evo" data-options="name: check-alt.svg; size: 32px; style: original; tryToSharpen: true"></div>
<p class="is-size-5 has-text-dark">On premises or in the cloud</p>
</li>
<li>
<div class="livicon-evo" data-options="name: check-alt.svg; size: 32px; style: original; tryToSharpen: true"></div>
<p class="is-size-5 has-text-dark">Multiple SDKs & libraries</p>
</li>
</ul>
<a href="https://docs.lto.network/project/developer-area/hashing-anchoring" class="button is-primary has-margin-top-lg">
<span>Read our documentation</span>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section is-medium" style="position: relative;" id="features">
<div class="lto-shape-a"></div>
<div class="container">
<h2 class="title is-size-2 has-text-dark has-text-centered">Features</h2>
<div class="h1-line"></div>
<div class="columns has-margin-top-lg">
<div class="column">
<div class="lto-card has-text-centered">
<div class="livicon-evo" data-options="name: dashboard.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-4 has-text-dark has-margin-top-md">Fast</p>
<div class="content bottom-cta has-margin-top-md">
<p class="has-text-dark">
LTO Network uses the Bitcoin-NG protocol which results in instant transaction verification.
</p>
</div>
</div>
</div>
<div class="column">
<div class="lto-card has-text-centered">
<div class="livicon-evo" data-options="name: bank.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-4 has-text-dark has-margin-top-md">GDPR Compliant</p>
<div class="content bottom-cta has-margin-top-md">
<p class="has-text-dark">
Our API allows you to encrypt your hashes. That way your hashes will be stored securely on the chain.
</p>
</div>
</div>
</div>
<div class="column">
<div class="lto-card has-text-centered">
<div class="livicon-evo" data-options="name: link.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-4 has-text-dark has-margin-top-md">Easy integration</p>
<div class="content bottom-cta has-margin-top-md">
<p class="has-text-dark">
LTO nodes come with their API documentation. With a simple API call you anchor your hash on the Network.
</p>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column">
<div class="lto-card has-text-centered">
<div class="livicon-evo" data-options="name: globe.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-4 has-text-dark has-margin-top-md">Decentralized</p>
<div class="content bottom-cta has-margin-top-md">
<p class="has-text-dark">
With dozens of nodes running across the globe the LTO Network is a truly decentralized solution.
</p>
</div>
</div>
</div>
<div class="column">
<div class="lto-card has-text-centered">
<div class="livicon-evo" data-options="name: share.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-4 has-text-dark has-margin-top-md">Permissionless</p>
<div class="content bottom-cta has-margin-top-md">
<p class="has-text-dark">
The only thing you need to start anchoring is a wallet containing LTO tokens.
</p>
</div>
</div>
</div>
<div class="column">
<div class="lto-card has-text-centered">
<div class="livicon-evo" data-options="name: coins.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-4 has-text-dark has-margin-top-md">Cheap</p>
<div class="content bottom-cta has-margin-top-md">
<p class="has-text-dark">
Since each node immediately starts mining when it holds tokens, anchor transaction pricing can go as low
as $0.001.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section is-medium has-background-light" style="position: relative;" id="features">
<div class="lto-shape-b"></div>
<div class="container has-text-centered">
<h2 class="title is-size-2 has-text-dark has-text-centered">Easy deployment</h2>
<div class="h1-line"></div>
<h3 class="subtitle">Start upgrading your system in three easy steps.</h3>
<div class="columns has-margin-top-lg">
<div class="column">
<div class="lto-card">
<div class="livicon-evo" data-options="name: download.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-3 has-text-dark has-margin-top-md">Download</p>
<div class="content bottom-cta has-margin-top-md">
<span class="has-text-dark">
Install <a href="https://docs.docker.com/install/#get-started" target="_blank">Docker</a> and download
the Docker Compose file from our <a href="https://github.com/legalthings/lto/blob/master/anchor-node/docker-compose.yml" target="_blank">Github repository</a>.
</span>
</div>
</div>
</div>
<div class="column">
<div class="lto-card">
<div class="livicon-evo" data-options="name: wrench.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-3 has-text-dark has-margin-top-md">Configure</p>
<div class="content bottom-cta has-margin-top-md">
<span class="has-text-dark">
Fill in your <a href="https://wallet.lto.network/start" target="_blank">wallet</a> seed in the
configuration options.
</span>
</div>
</div>
</div>
<div class="column">
<div class="lto-card">
<div class="livicon-evo" data-options="name: share-alt.svg; size: 76px; strokeColor: #7e95ef; strokeColorAlt: #5bddb4; style: linesAlt; tryToSharpen: true">
</div>
<p class="title is-size-3 has-text-dark has-margin-top-md">Run</p>
<div class="content bottom-cta has-margin-top-md">
<span class="has-text-dark">Run the node by using the command:</span>
<pre>docker-compose up</pre>
</div>
</div>
</div>
</div>
<p>
<a class="button is-primary has-margin-top-lg" href="https://docs.lto.network/project/developer-area/lto_node">
<span>Read our documentation</span>
</a>
</p>
</div>
</section>
<section class="section is-medium" style="position: relative;" id="pricing">
<div class="lto-shape-d"></div>
<div class="container">
<div class="columns">
<div class="column is-half">
<div class="columns is-gapless is-mobile">
<div class="column">
<p class="title is-size-2 has-text-dark">
Enjoy the freedom of choice
</p>
<p class="subtitle has-text-dark">
Start small and expand at your own pace.
</p>
</div>
</div>
<div class="columns is-gapless is-mobile">
<div class="column is-narrow is-half">
<div class="box bg-is-transparent no-box-shadow padding-tb">
<p class="title subhead is-size-5">
Any infrastructure
</p>
<div class="content">
<ul class="block-list-style">
<li>Public clouds (AWS, Azure, Google Cloud, IBM, etc)</li>
<li>On-premises</li>
</ul>
</div>
</div>
</div>
<div class="column is-narrow is-half">
<div class="box bg-is-transparent no-box-shadow padding-tb">
<p class="title subhead is-size-5">
Any application
</p>
<p class="content is-size-6">
Connect any business application to the rest API that is included with an LTO node.
</p>
</div>
</div>
</div>
<div class="columns is-gapless is-mobile">
<div class="column is-narrow is-half">
<div class="box bg-is-transparent no-box-shadow padding-tb">
<p class="title subhead is-size-5">
Any deployment script
</p>
<p class="content is-size-6">
We support Docker Compose, Elastic Beanstalk and Kubernetes to deploy LTO to your favorite hosting
provider
</p>
</div>
</div>
<div class="column is-narrow is-half">
<div class="box bg-is-transparent no-box-shadow padding-tb">
<p class="title subhead is-size-5">
Any language
</p>
<p class="content is-size-6">
The RESTful API allows for any language to interact with the node.
</p>
</div>
</div>
</div>
</div>
<!--div class="column is-1 is-gapless">
</div!-->
<div class="column is-offset-1" id="pricing">
<div class="lto-card">
<p class="title is-size-3">
Pricing
</p>
<p class="content is-size-5">
You can acquire a part of the network capacity to run 'net-zero' or pay-as-you-go, based on the number of
transactions.
</p>
<div class="columns has-margin-top-md">
<div class="column">
<h5 class="is-size-7">
<strong>Anchor Transaction</strong>
</h5>
<p class="content has-text-success is-size-5">
From $0.001
</p>
</div>
<div class="is-divider-vertical"></div>
<div class="column">
<h5 class="is-size-7">
<strong>Anchor Verification</strong>
</h5>
<p class="content has-text-success is-size-5">
FREE
</p>
</div>
</div>
<div class="is-centered has-text-centered has-margin-top-md">
<a class="button is-primary has-margin-top-sm" href="contact.html">
<span>Contact sales</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<div class="field is-grouped is-centered">
<p class="control">
<a href="https://twitter.com/LTOnetwork">
<span class="icon">
<i class="fab fa-twitter"></i>
</span>
</a>
</p>
<p class="control">
<a href="https://github.com/legalthings">
<span class="icon">
<i class="fab fa-github"></i>
</span>
</a>
</p>
<p class="control">
<a href="https://www.youtube.com/channel/UCaHcF-xterKYTKSpY4xgKiw">
<span class="icon">
<i class="fab fa-youtube"></i>
</span>
</a>
</p>
<p class="control">
<a href="http://medium.com/ltonetwork">
<span class="icon">
<i class="fab fa-medium-m"></i>
</span>
</a>
</p>
<p class="control">
<a href="https://reddit.com/r/LTONetwork">
<span class="icon">
<i class="fab fa-reddit"></i>
</span>
</a>
</p>
<p class="control">
<a href="https://t.me/LTOnetwork">
<span class="icon">
<i class="fab fa-telegram"></i>
</span>
</a>
</p>
</div>
<p class="is-size-6 has-text-white">
© 2019 LTO Network. All rights reserved. <br>
<small>
Incorporated by <a href="https://www.firm24.com/bv-oprichten/" target="_blank" alt="Firm24" class="is-size-7">Firm24</a>
</small>
</p>
<p>
<small>
<a href="documents/privacy-policy.pdf" target="_blank" alt="Privacy Policy" class="is-size-7">Privacy Policy</a> - <a href="documents/cookie-statement.pdf" target="_blank" alt="Cookie Statement" class="is-size-7">Cookie Statement</a>
</small>
</p>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script defer src="js/custom/menu.js"></script>
<script defer src="js/custom/products.js"></script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/tools/snap.svg-min.js">
</script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/tools/TweenMax.min.js">
</script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/tools/DrawSVGPlugin.min.js">
</script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/tools/MorphSVGPlugin.min.js">
</script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/tools/verge.min.js"></script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/LivIconsEvo.defaults.js">
</script>
<script src="https://s3-eu-west-1.amazonaws.com/legalthings/assets/icons/LivIconsEvo/js/LivIconsEvo.min.js"></script>
<script defer src="https://legalthings.github.io/anchor-verification-component/lto-anchor-verification/lto-anchor-verification.js">
</script>
<!-- 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>
<script type="text/javascript">
_linkedin_partner_id = "1417473";
window._linkedin_data_partner_ids = window._linkedin_data_partner_ids || [];
window._linkedin_data_partner_ids.push(_linkedin_partner_id);
</script>
<script type="text/javascript">
(function() {
var s = document.getElementsByTagName("script")[0];
var b = document.createElement("script");
b.type = "text/javascript";
b.async = true;
b.src = "https://snap.licdn.com/li.lms-analytics/insight.min.js";
s.parentNode.insertBefore(b, s);
})();
</script> <noscript> <img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=1417473&fmt=gif" /> </noscript>
</body>
</html>