-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
856 lines (834 loc) · 52.8 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<!-- title -->
<title>KIP Foundation</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1" />
<meta name="author" content="">
<!-- description -->
<meta name="description" content="">
<!-- keywords -->
<meta name="keywords" content="">
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon.png">
<link rel="apple-touch-icon" href="images/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
<!-- animation -->
<link rel="stylesheet" href="css/animate.css" />
<!-- bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- et line icon -->
<link rel="stylesheet" href="css/et-line-icons.css" />
<!-- font-awesome icon -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- themify icon -->
<link rel="stylesheet" href="css/themify-icons.css">
<!-- swiper carousel -->
<link rel="stylesheet" href="css/swiper.min.css">
<!-- justified gallery -->
<link rel="stylesheet" href="css/justified-gallery.min.css">
<!-- magnific popup -->
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- revolution slider -->
<link rel="stylesheet" type="text/css" href="revolution/css/settings.css" media="screen" />
<link rel="stylesheet" type="text/css" href="revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="revolution/css/navigation.css">
<!-- bootsnav -->
<link rel="stylesheet" href="css/bootsnav.css">
<!-- style -->
<link rel="stylesheet" href="css/style.css" />
<!-- responsive css -->
<link rel="stylesheet" href="css/responsive.css" />
<link rel="stylesheet" href="css/custom.css" />
<!--[if IE]>
<script src="js/html5shiv.js"></script>
<![endif]-->
</head>
<body class="bg-background-fade">
<!-- start header -->
<header>
<!-- start navigation -->
<nav
class="navbar navbar-default bootsnav navbar-fixed-top bg-transparent nav-box-width white-link padding-four-lr menu-logo-center">
<div class="container nav-header-container">
<div class="row">
<div class="center-logo">
<span class="title_overlay">KIP</span>
<a href="index.html" title="KIP Logo" class="logo">
<img src="images/tesseract.gif" data-at2x="images/png/kip_logo2.png" class="logo-dark" alt="KIP Logo" />
<img src="images/tesseract.gif" data-at2x="images/png/kip_logo2.png" alt="KIP Logo"
class="logo-light default" />
</a>
</div>
<div class="col-md-12 col-sm-12 col-xs-12 accordion-menu">
<button type="button" class="navbar-toggle collapsed pull-right" data-toggle="collapse"
data-target="#navbar-collapse-toggle-1">
<span class="sr-only">toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-collapse collapse no-padding-right" id="navbar-collapse-toggle-1">
<ul class="nav navbar-nav navbar-left text-right no-margin alt-font text-normal width-40 sm-width-100 sm-text-left"
data-in="fadeIn" data-out="fadeOut">
<!-- start menu item -->
<li class="megamenu-fw menuFont"><a href="#about">About</a></li>
<!-- end menu item -->
<!-- start menu item -->
<li class="megamenu-fw"><a href="#features">Features</a></li>
<!-- end menu item -->
<!-- start menu item -->
<li class="megamenu-fw"><a href="#benefits">Benefits</a></li>
<!-- end menu item -->
<!-- start menu item -->
<li class="megamenu-fw"><a href="#team">Team</a></li>
<!-- end menu item -->
</ul>
<ul class="nav navbar-nav navbar-right no-margin alt-font text-normal width-40 sm-width-100"
data-in="fadeIn" data-out="fadeOut">
<!-- start menu item -->
<li class="megamenu-fw"><a href="#get_involved">Get Involved</a></li>
<!-- end menu item -->
<!-- start menu item -->
<li class="megamenu-fw"><a href="#resources">Resources</a></li>
<!-- end menu item -->
<!-- start menu item -->
<li class="megamenu-fw"><a href="#faq">FAQs</a></li>
<!-- end menu item -->
<!-- start menu item -->
<li class="megamenu-fw"><a href="#contact">Contact</a></li>
<!-- end menu item -->
</ul>
</div>
</div>
</div>
</div>
</nav>
<!-- end navigation -->
</header>
<!-- end header -->
<!-- start hero section -->
<section class="kramaresponsive">
<div class="container">
<p
class="text-extra-small alt-font text-white letter-spacing-3 xs-letter-spacing-0 text-uppercase margin-20px-bottom xs-margin-5px-bottom display-inline-block kramaprotocol">
Krama Intelligent Protocol
</p>
<p class="network">
Network Humanized. Blockchain transformed.</p>
</div>
</section>
<section class="wow fadeIn no-padding cover-background color-code bannerImg" data-color="6">
<div class="container-fluid full-screen position-relative bannerheight">
<div class="slider-typography text-left">
<div class="slider-text-middle-main">
<div class="slider-text-middle">
<div class="centered">
<p
class="text-extra-small alt-font text-white letter-spacing-3 xs-letter-spacing-0 text-uppercase margin-20px-bottom xs-margin-5px-bottom display-inline-block kramaprotocol">
Krama Intelligent Protocol
</p>
<p class="network">
Network Humanized. Blockchain transformed.</p>
<p class="kipdesc" style="width:32vw;margin-left:6.5vw;">
World’s first intelligent context aware peer to peer network enabling human like Digital
interactions
</p>
<a href="whitepaper.html"
class="btn btn-transparent-white btn-rounded btn-medium text-link-white">Whitepaper</a>
<a href="technicalprimer.html"
class="btn btn-transparent-white btn-rounded btn-medium text-link-white">Technical
Primer</a>
</div>
</div>
</div>
</div>
</section>
<section class="kramaresponsive">
<div class="container">
<p class="kipdesc">
World’s first intelligent context aware peer to peer network enabling human like Digital
interactions
</p>
<a href="whitepaper.html"
class="btn btn-transparent-white btn-rounded btn-medium text-link-white">Whitepaper</a>
<a href="technicalprimer.html"
class="btn btn-transparent-white btn-rounded btn-medium text-link-white">Technical
Primer</a>
</div>
</section>
<!-- end hero section -->
<!-- start section -->
<section id="about" class="wow fadeIn color-code md-no-background-img" data-color="6"
style="background: url('images/back-image3.png') left bottom no-repeat,url('images/back-image3.png') right top no-repeat">
<div class="container">
<div class="row">
<div class="col-lg-9 col-md-10 col-sm-10 col-xs-12 center-col text-center xs-padding-15px-lr">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
What is KIP?</div>
<h5 class="text-white alt-font width-95 sm-width-100 margin-70px-bottom sm-no-margin-bottom">KIP stands for Krama Intelligent protocol.
</h5>
<h6>KIP is an intelligent context-aware peer to peer value network enabling human-like digital interactions through a Tesseract grid (T-grid).
Each and every user interaction is persisted as a locus on the T-grid by simultaneously optimising decentralised
compute, distributed storage, modulated trust and multi-dimensional value.</h6>
</div>
</div>
</div>
</section>
<!-- end section -->
<!-- start features section -->
<section id="features" class="wow fadeIn color-code no-padding xs-padding-50px-tb" data-color="6">
<div class="container-fluid">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
KIP FEATURES</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-10 col-xs-12 center-col text-center">
<div class="col-md-4 text-white">
<i class="fa fa-connectdevelop fa-5x"></i><br><br>
<h6>TDU</h6>
<p class="text-medium alt-font">Total Digital Utility (TDU) is a collective measure of disparate
behavior of actors in the KIP ecosystem involved across different types of interaction on
multiple diApps. It offers a multi-dimensional value environment for all KIP users to
leverage their respective interests and abilities to leverage services.</p>
</div>
<div class="col-md-4 text-white">
<i class="fa fa-database fa-5x"></i><br><br>
<h6>Big data & Cognition</h6>
<p class="text-medium alt-font">KIP supports big data persistence with an external storage realm
KFS (Krama File System, an enhanced version of IPFS) that is capable of storing large
volumes of various forms of data, yet maintaining the state changes of the data through
cryptographic hashes.</p>
</div>
<div class="col-md-4 text-white">
<i class="fa fa-line-chart fa-5x"></i><br><br>
<h6>Scalability</h6>
<p class="text-medium alt-font">KIP leverages PBFT Hardened RAFT with sentinel modifications to
support abrupt changes in the network strength. This deterministic approach encourages
businesses to adopt a minimalistic approach to obtain exponential scaling on cost-efficient
hardware, thereby contributing to a greener world.</p>
</div>
</div>
</div><br>
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div class="col-md-2 text-white"></div>
<div class="col-md-4 text-white">
<i class="fa fa-tachometer fa-5x"></i><br><br>
<h6>Throughput</h6>
<p class="text-medium alt-font">KIP adopts the modulated trust by leveraging TARA (Ternary
Augmented RAFT Architecture) to achieve partial confirmations from nodes designated by the
users(we call them as “fast followers”) as well as stakeholders from other regulatory
authorities(we call them as “shadow followers”).</p>
</div>
<div class="col-md-4 text-white">
<i class="fa fa-clock-o fa-5x"></i><br><br>
<h6>Predictable TCO</h6>
<p class="text-medium alt-font">We understand businesses can’t drive on uncertainty. Hence, KIP
introduces “Multi-Tier nodes” concept to ensure Txn finality & apt gas usage, thereby
encouraging the enterprise in adopting KIP for predictable gas cost.</p>
</div>
<div class="col-md-2 text-white"></div>
</div>
</div>
</div>
</section>
<!-- end features section -->
<br><br><br><br><br><br>
<!-- start benefits section -->
<section id="benefits" class="wow fadeIn animated color-code no-padding-top md-no-background-img xs-padding-50px-tb"
data-color="6" style="background: url('images/back-image3.png') left bottom no-repeat">
<div class="container">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
KIP Benefits</div>
</div>
</div>
<div class="row equalize xs-equalize-auto">
<!-- start blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-15px-bottom wow fadeIn">
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">Dynamic
GTM</span>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">With
Krama Services, developers from enterprise & budding startups can spin off applications
with new business models at a shorter Go To Market time, thereby getting ahead in the
competitive landscape.</span>
</div>
</div>
</div>
<!-- start blog post item -->
<!-- end blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-15px-bottom fadeIn" data-wow-delay="0.2s">
<!-- fresh news item -->
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">Value
discovery</span>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">Leverage
TDU & associated components in KIP to design new business models. Enhance the market
value of existing applications by leveraging user behaviour in a tangible manner.</span>
</div>
</div>
</div>
<!-- start blog post item -->
<!-- end blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 fadeIn" data-wow-delay="0.4s">
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">Build
agile diApps</span>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">KIP
enables your development team to minimize the learning curve with KIDE - A simple-to-use
web based IDE that supports standard industrial practices in project development &
management in a tangible manner.</span>
</div>
</div>
</div>
<!-- start blog post item -->
</div>
</div>
</section>
<!-- end benefits section -->
<!-- start team section -->
<section id="team" class="wow fadeIn color-code xs-padding-50px-tb" data-color="6">
<div class="container-fluid">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
Our Team</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-10 col-xs-12 center-col text-center">
<div class="col-md-4"></div>
<!-- start team item -->
<div
class="col-md-2 col-sm-6 col-xs-12 team-block text-left team-style-1 margin-40px-bottom sm-margin-seven-bottom xs-margin-30px-bottom wow fadeInRight">
<figure>
<div class="team-image xs-width-100">
<img src="images/jpg/anantha.jpg" alt="">
<div class="overlay-content text-center">
<div class="display-table height-100 width-100">
<div
class="vertical-align-bottom display-table-cell icon-social-small padding-twelve-all">
<!-- <span class="text-white text-small display-inline-block no-margin">Random text to display</span> -->
<div class="separator-line-horrizontal-full bg-deep-pink margin-eleven-tb">
</div>
<a href="https://www.linkedin.com/in/anantha-r-k-237a762/"
class="text-white" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://twitter.com/Arshasays" class="text-white"
target="_blank"><i class="fa fa-twitter"></i></a>
<!-- <a href="http://www.plus.google.com" class="text-white" target="_blank"><i class="fa fa-google-plus"></i></a> -->
<!-- <a href="http://www.instagram.com" class="text-white" target="_blank"><i class="fa fa-instagram"></i></a> -->
</div>
</div>
</div>
<div class="team-overlay bg-extra-dark-gray opacity8"></div>
</div>
<figcaption>
<div class="team-member-position margin-20px-top text-center">
<div class="text-medium font-weight-500 text-white text-uppercase">Anantha Krishnan
</div>
<!-- <div class="text-small text-white">CEO</div> -->
</div>
</figcaption>
</figure>
</div>
<!-- end team item -->
<!-- start team item -->
<div
class="col-md-2 col-sm-6 col-xs-12 team-block text-left team-style-1 margin-40px-bottom sm-margin-seven-bottom xs-margin-30px-bottom wow fadeInRight">
<figure>
<div class="team-image xs-width-100">
<img src="images/jpg/ganesh.jpg" alt="">
<div class="overlay-content text-center">
<div class="display-table height-100 width-100">
<div
class="vertical-align-bottom display-table-cell icon-social-small padding-twelve-all">
<!-- <span class="text-white text-small display-inline-block no-margin">Random text to display</span> -->
<div class="separator-line-horrizontal-full bg-deep-pink margin-eleven-tb">
</div>
<a href="https://www.linkedin.com/in/kumblegp/" class="text-white"
target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://twitter.com/KumbleGp" class="text-white" target="_blank"><i
class="fa fa-twitter"></i></a>
<!-- <a href="http://www.plus.google.com" class="text-white" target="_blank"><i class="fa fa-google-plus"></i></a> -->
<!-- <a href="http://www.instagram.com" class="text-white" target="_blank"><i class="fa fa-instagram"></i></a> -->
</div>
</div>
</div>
<div class="team-overlay bg-extra-dark-gray opacity8"></div>
</div>
<figcaption>
<div class="team-member-position margin-20px-top text-center">
<div class="text-medium font-weight-500 text-white text-uppercase">Ganesh Prasad
Kumble</div>
<!-- <div class="text-small text-white">Lead, Platform Innovation</div> -->
</div>
</figcaption>
</figure>
</div>
<!-- end team item -->
<div class="col-md-3"></div>
</div>
</div>
</div>
</section>
<!-- end team section -->
<!-- start resources section -->
<section id="get_involved" class="wow fadeIn animated color-code md-no-background-img xs-padding-50px-tb"
data-color="6" style="background: url('images/back-image6.png') right top no-repeat">
<div class="container">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
Get Involved</div>
</div>
</div>
<div class="row equalize xs-equalize-auto">
<!-- start blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-15px-bottom wow fadeIn">
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details text-white">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">Developer</span><br>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">
<a href="https://github.com/KIPFoundation/rfcs/issues" target="_blank">Participate in
RFCs</a><br><br>
<a href="https://github.com/KIPFoundation/go-kip/issues" target="_blank">Open GitHub
Issues</a><br><br>
<a href="https://github.com/KIPFoundation/kip/blob/master/CONTRIBUTING.md"
target="_blank">Contribution Guidelines</a><br><br>
<a href="https://github.com/KIPFoundation/kip/blob/master/CLA.md"
target="_blank">Contributor License Agreement</a>
</span>
</div>
</div>
</div>
<!-- start blog post item -->
<!-- end blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-15px-bottom fadeIn" data-wow-delay="0.2s">
<!-- fresh news item -->
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">Business</span><br>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">
<a href="#">KIP Deck (coming soon)</a>
</span>
</div>
</div>
</div>
<!-- start blog post item -->
<!-- end blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 fadeIn" data-wow-delay="0.4s">
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">Adopters</span><br>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">
<a href="https://kipfoundation.typeform.com/to/rIG30H" target="_blank">Upstarting a
blockchain idea? Join KIP Adopters Program</a>
</span>
</div>
</div>
</div>
<!-- start blog post item -->
</div>
</div>
</section>
<!-- end resources section -->
<!-- start resources section -->
<section id="resources" class="wow fadeIn animated color-code md-no-background-img xs-padding-50px-tb"
data-color="6" style="background: url('images/back-image3.png') left bottom no-repeat">
<div class="container">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
Resources</div>
</div>
</div>
<div class="row equalize xs-equalize-auto">
<!-- start blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-15px-bottom wow fadeIn">
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details text-white">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">For
Businesses</span><br>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">
<a href="whitepaper.html" target="_blank">Whitepaper</a><br><br>
<a href="https://github.com/KIPFoundation/wiki/blob/master/pages/pm/Roadmap.md"
target="_blank">Product Roadmap</a><br><br>
<a href="https://github.com/KIPFoundation/wiki/blob/master/pages/tdu/tdu-specs.md"
target="_blank">TDU Specs</a>
</span>
</div>
</div>
</div>
<!-- start blog post item -->
<!-- end blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 xs-margin-15px-bottom fadeIn" data-wow-delay="0.2s">
<!-- fresh news item -->
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">For
Developers</span><br>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">
<a href="technicalprimer.html" target="_blank">Technical Primer</a><br><br>
<a href="https://github.com/KIPFoundation/wiki/blob/master/pages/kfs/kfs-specs.md"
target="_blank">KFS Specs</a><br><br>
<a href="https://github.com/KIPFoundation/wiki/blob/master/pages/kide/kide-specs.md"
target="_blank">KIDE Specs</a><br><br>
<a href="https://github.com/KIPFoundation/wiki/blob/master/pages/tara/tara-specs.md"
target="_blank">TARA Specs</a>
</span>
</div>
</div>
</div>
<!-- start blog post item -->
<!-- end blog post item -->
<div class="col-md-4 col-sm-4 col-xs-12 fadeIn" data-wow-delay="0.4s">
<div
class="blog-post blog-post-style6 border-all border-white-light padding-fourteen-all md-padding-ten-all xs-padding-30px-all inner-match-height">
<div class="post-details">
<span
class="text-extra-small text-white text-uppercase display-block margin-four-bottom sm-margin-two-bottom opacity7">For
users</span><br>
<span
class="text-medium alt-font margin-50px-bottom xs-margin-30px-bottom display-block inner-match-height text-white">
<a href="https://medium.com/kipfoundation/announcements"
target="_blank">Announcements</a>
</span>
</div>
</div>
</div>
<!-- start blog post item -->
</div>
</div>
</section>
<!-- end resources section -->
<!-- start faq section -->
<section id="faq" class="wow fadeIn color-code xs-padding-50px-tb" data-color="6">
<div class="container-fluid">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
Frequently Asked Questions</div>
</div>
</div>
<div class="row">
<div class="col-md-8 col-sm-12 center-col">
<!-- start accordion -->
<div class="panel-group accordion-style1" id="accordion-one">
<!-- start accordion item -->
<div class="panel">
<div class="panel-heading">
<a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link1"
class="collapsed" aria-expanded="false">
<div
class="panel-title font-weight-500 text-uppercase position-relative padding-20px-right text-white">
What do you mean by achieving modulated trust using TARA?<span
class="pull-right position-absolute right-0 top-0"><i
class="ti-plus"></i></span></div>
</a>
</div>
<div id="accordion-one-link1" class="panel-collapse collapse">
<div class="panel-body text-white">
<p>TARA is a PBFT hardened RAFT Algorithm that is capable of:</p>
<ul class="line-height-35">
<li>Dynamically managing huge addition of nodes into the network.</li>
<li>Facilitate modulated trust by create state channels with nodes interested to
keep track of that specific industry. This allows the users a great
opportunity to choose the degree of interest needed by the verifying
network.</li>
</ul>
</div>
</div>
</div>
<!-- end accordion item -->
<!-- start accordion item -->
<div class="panel">
<div class="panel-heading">
<a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link2"
class="collapsed" aria-expanded="false">
<div
class="panel-title font-weight-500 text-uppercase position-relative padding-20px-right text-white">
What is an ATL State Analyzer & what is its importance?<span
class="pull-right position-absolute right-0 top-0"><i
class="ti-plus"></i></span></div>
</a>
</div>
<div id="accordion-one-link2" class="panel-collapse collapse">
<div class="panel-body text-white">
<p>Building applications on any bleeding-edge technologies are challenging.
Uncertain behaviour of ever-changing features & functionalities lead to
irrevocable issues in the production environments. </p>
<p>This is addressed in KIP by simulating the long-term behaviour of the app from
all critical angles / combinations by the ATL State Analyzer.</p>
</div>
</div>
</div>
<!-- end accordion item -->
<!-- start accordion item -->
<div class="panel">
<div class="panel-heading">
<a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link3"
class="collapsed" aria-expanded="false">
<div
class="panel-title font-weight-500 text-uppercase position-relative padding-20px-right text-white">
What is diApp? How is it different from dApp?<span
class="pull-right position-absolute right-0 top-0"><i
class="ti-plus"></i></span></div>
</a>
</div>
<div id="accordion-one-link3" class="panel-collapse collapse">
<div class="panel-body text-white">
<p>diApp stands for distributed intelligent application. Unlike a dapp scripted for
logic, diApp consumes Krama Services that integrates logic with external
systems. Ever planned on authenticating a verified FB user for an entitlement
contract? Services like Krama Identity Services come to the rescue by
authenticating the user & generating diAuth - an Auth token paired with the
user's wallet visible to vendors/administrators, yet opaque to fellow users in
the ecosystem</p>
</div>
</div>
</div>
<!-- end accordion item -->
<!-- start accordion item -->
<div class="panel">
<div class="panel-heading">
<a data-toggle="collapse" data-parent="#accordion-one" href="#accordion-one-link4"
class="collapsed" aria-expanded="false">
<div
class="panel-title font-weight-500 text-uppercase position-relative padding-20px-right text-white">
What is KIDE? How is it different from Krama Services?<span
class="pull-right position-absolute right-0 top-0"><i
class="ti-plus"></i></span></div>
</a>
</div>
<div id="accordion-one-link4" class="panel-collapse collapse">
<div class="panel-body text-white">
<p>KIDE is an Integrated Development Environment facilitating smart contract and app
developers to edit, compile, simulate & deploy code in the KIP ecosystem.</p>
<p>Whereas Krama Services are set of ready-to-use libraries & special APIs married
to the KIP's mesh to act as a bridge connecting external realms for qualified
information.</p>
<p>An analogy: KIDE is to your favourite IDE as to Krama Services to the plugins
that make your life easier. (cheer up devs :) )</p>
</div>
</div>
</div>
<!-- end accordion item -->
</div>
<!-- end accordion -->
</div>
</div>
</div>
</section>
<!-- end faq section -->
<!-- start contact section -->
<section id="contact" class="wow fadeIn animated color-code md-no-background-img" data-color="6"
style="background: url('images/back-image5.png') left 51% no-repeat,url('images/back-image6.png') right top no-repeat">
<div class="container">
<div class="row">
<div class="col-md-9 col-sm-10 col-xs-12 center-col text-center wow fadeIn">
<div
class="text-extra-small letter-spacing-3 alt-font text-white text-uppercase margin-70px-bottom sm-margin-50px-bottom xs-margin-30px-bottom display-inline-block">
Fill out the form and we'll be in touch soon!</div>
</div>
</div>
<form id="contact-form" method="post" netlify>
<div class="row">
<div class="col-md-8 center-col input-border-white text-center">
<div id="success-contact-form" class="no-margin-lr"></div>
<input type="text" name="name" id="name" placeholder="Name*"
class="input-border-bottom border-white-light">
<input type="text" name="email" id="email" placeholder="E-mail*"
class="input-border-bottom border-white-light">
<input type="text" name="subject" id="subject" placeholder="Subject"
class="input-border-bottom border-white-light">
<textarea name="comment" id="comment" placeholder="Your Message"
class="input-border-bottom border-white-light"></textarea>
<button id="contact-us-button" type="submit"
class="btn btn-very-small btn-transparent-white xs-margin-15px-top">send message</button>
</div>
</div>
</form>
</div>
</section>
<!-- end contact section -->
<!-- start footer -->
<footer class="footer-center-logo padding-five-tb xs-padding-30px-tb">
<div class="container">
<div class="row equalize xs-equalize-auto">
<!-- start copyright -->
<!-- <div class="col-md-4 col-sm-5 col-xs-12 text-small text-center alt-font display-table xs-text-center xs-margin-15px-bottom">
<div class="display-table-cell vertical-align-middle text-white">
© 2018 KIP Foundation</a>.
</div>
</div> -->
<!-- end copyright -->
<!-- start social media -->
<div class="col-md-4 col-sm-5 col-xs-12 text-center display-table xs-text-center">
<div class="display-table-cell vertical-align-middle text-white">
<div class="social-icon-style-8 display-inline-block vertical-align-middle">
<ul class="small-icon no-margin-bottom">
<!-- <li><a class="text-white" href="#about" target="_blank">About</a></li> -->
<li><a class="text-white" href="#get_involved">Join Us</a></li>
<li><a class="text-white" href="https://medium.com/kipfoundation"
target="_blank">Blog</a></li>
<li><a class="text-white" href="https://github.com/KIPFoundation/wiki#contents"
target="_blank">Extras</a></li>
<li><a class="text-white"
href="https://github.com/KIPFoundation/wiki/blob/master/pages/pm/Roadmap.md"
target="_blank">Roadmap</a></li>
</ul>
</div>
</div>
</div>
<!-- end social media -->
<!-- start logo -->
<div class="col-md-4 col-sm-2 col-xs-12 text-center display-table xs-margin-10px-bottom">
<div class="display-table-cell vertical-align-middle">
<a href="index.html"><img class="footer-logo" src="images/png/kip_logo2.png"
data-at2x="images/png/kip_logo2.png" alt=""></a>
</div>
</div>
<!-- end logo -->
<!-- start social media -->
<div class="col-md-4 col-sm-5 col-xs-12 text-center display-table xs-text-center">
<div class="display-table-cell vertical-align-middle text-white">
<div class="social-icon-style-8 display-inline-block vertical-align-middle">
<ul class="small-icon no-margin-bottom">
<li><a class="text-white" href="https://www.facebook.com/kipfoundation"
target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a class="text-white" href="https://twitter.com/kip_foundation" target="_blank"><i
class="fa fa-twitter"></i></a></li>
<li><a class="text-white" href="https://www.linkedin.com/company/13702329/"
target="_blank"><i class="fa fa-linkedin"></i></a></li>
<li><a class="text-white" href="https://github.com/kipfoundation" target="_blank"><i
class="fa fa-github"></i></a></li>
<li><a class="text-white" href="https://kipfoundation.slack.com" target="_blank"><i
class="fa fa-slack"></i></a></li>
<li><a href="https://gitter.im/kipfoundation" target="_blank"><img
src="images/gitter.png" class="img-responsive"></a></li>
</ul>
</div>
</div>
</div>
<!-- end social media -->
</div>
</div>
</footer>
<!-- end footer -->
<!-- start scroll to top -->
<a class="scroll-top-arrow" href="javascript:void(0);"><i class="ti-arrow-up"></i></a>
<!-- end scroll to top -->
<!-- javascript libraries -->
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/skrollr.min.js"></script>
<script type="text/javascript" src="js/smooth-scroll.js"></script>
<script type="text/javascript" src="js/jquery.appear.js"></script>
<!-- menu navigation -->
<script type="text/javascript" src="js/bootsnav.js"></script>
<script type="text/javascript" src="js/jquery.nav.js"></script>
<!-- animation -->
<script type="text/javascript" src="js/wow.min.js"></script>
<!-- page scroll -->
<script type="text/javascript" src="js/page-scroll.js"></script>
<!-- swiper carousel -->
<script type="text/javascript" src="js/swiper.min.js"></script>
<!-- counter -->
<script type="text/javascript" src="js/jquery.count-to.js"></script>
<!-- parallax -->
<script type="text/javascript" src="js/jquery.stellar.js"></script>
<!-- magnific popup -->
<script type="text/javascript" src="js/jquery.magnific-popup.min.js"></script>
<!-- portfolio with shorting tab -->
<script type="text/javascript" src="js/isotope.pkgd.min.js"></script>
<!-- images loaded -->
<script type="text/javascript" src="js/imagesloaded.pkgd.min.js"></script>
<!-- pull menu -->
<script type="text/javascript" src="js/classie.js"></script>
<script type="text/javascript" src="js/hamburger-menu.js"></script>
<!-- counter -->
<script type="text/javascript" src="js/counter.js"></script>
<!-- fit video -->
<script type="text/javascript" src="js/jquery.fitvids.js"></script>
<!-- equalize -->
<script type="text/javascript" src="js/equalize.min.js"></script>
<!-- skill bars -->
<script type="text/javascript" src="js/skill.bars.jquery.js"></script>
<!-- justified gallery -->
<script type="text/javascript" src="js/justified-gallery.min.js"></script>
<!--pie chart-->
<script type="text/javascript" src="js/jquery.easypiechart.min.js"></script>
<!-- instagram -->
<script type="text/javascript" src="js/instafeed.min.js"></script>
<!-- retina -->
<script type="text/javascript" src="js/retina.min.js"></script>
<!-- revolution -->
<script type="text/javascript" src="revolution/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="revolution/js/jquery.themepunch.revolution.min.js"></script>
<!-- revolution slider extensions (load below extensions JS files only on local file systems to make the slider work! The following part can be removed on server for on demand loading) -->
<!--<script type="text/javascript" src="revolution/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.carousel.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.parallax.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="revolution/js/extensions/revolution.extension.video.min.js"></script>-->
<!-- setting -->
<script type="text/javascript" src="js/main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-117592884-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-117592884-1');
</script>
</body>
</html>