-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
1651 lines (1507 loc) · 61.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- ShiftKey - Software & Startup Premium Landing Page Template design by DSAThemes (http://www.dsathemes.com) -->
<!--[if lt IE 7]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="jamaljsr" />
<meta
name="description"
content="One-click Bitcoin Lightning networks for local app development & testing. Spend less time setting up your development environment, so you can spend more time building your next killer Lightning app."
/>
<meta
name="keywords"
content="Polar, Bitcoin, Lightning, Lightning Network, Developer Tool, Regtest"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SHARE META -->
<meta property="og:url" content="https://lightningpolar.com" />
<meta
property="og:title"
content="Polar - Regtest Lightning Networks, Made Easy"
/>
<meta
property="og:description"
content="One-click Bitcoin Lightning networks for local app development & testing. Spend less time setting up your development environment, so you can spend more time building your next killer Lightning app."
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://lightningpolar.com/images/image-12a.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@jamaljsr" />
<!-- SITE TITLE -->
<title>Polar - Regtest Lightning Networks, Made Easy</title>
<!-- FAVICON AND TOUCH ICONS -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="images/apple-touch-icon.png" />
<link
rel="apple-touch-icon"
sizes="57x57"
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="76x76"
href="images/apple-touch-icon-76x76.png"
/>
<link
rel="apple-touch-icon"
sizes="114x114"
href="images/apple-touch-icon-114x114.png"
/>
<link
rel="apple-touch-icon"
sizes="120x120"
href="images/apple-touch-icon-120x120.png"
/>
<link
rel="apple-touch-icon"
sizes="144x144"
href="images/apple-touch-icon-144x144.png"
/>
<link
rel="apple-touch-icon"
sizes="152x152"
href="images/apple-touch-icon-152x152.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="images/apple-touch-icon-180x180.png"
/>
<!-- GOOGLE FONTS -->
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,500,700,900"
rel="stylesheet"
/>
<!-- BOOTSTRAP CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
<!-- FONT ICONS -->
<link
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
rel="stylesheet"
crossorigin="anonymous"
/>
<link href="css/flaticon.css" rel="stylesheet" />
<!-- PLUGINS STYLESHEET -->
<link href="css/magnific-popup.css" rel="stylesheet" />
<link href="css/owl.carousel.min.css" rel="stylesheet" />
<link href="css/owl.theme.default.min.css" rel="stylesheet" />
<link href="css/animate.css" rel="stylesheet" />
<!-- TEMPLATE CSS -->
<link href="css/main.css" rel="stylesheet" />
<!-- RESPONSIVE CSS -->
<link href="css/responsive.css" rel="stylesheet" />
</head>
<body>
<!-- PRELOADER SPINNER
============================================= -->
<div id="loader-wrapper">
<div id="loader">
<span class="cssload-loader">
<span class="cssload-loader-inner"></span>
</span>
</div>
</div>
<!-- PAGE CONTENT
============================================= -->
<div id="page" class="page">
<!-- HEADER
============================================= -->
<header id="header" class="header">
<nav
class="navbar fixed-top navbar-expand-md navbar-light bg-tra hover-menu"
>
<div class="container">
<!-- LOGO IMAGE -->
<!-- For Retina Ready displays take a image with double the amount of pixels that your image will be displayed (e.g 240 x 60 pixels) -->
<a href="#hero-2" class="navbar-brand logo-black"
><img
src="images/logo.png"
width="120"
height="30"
alt="header-logo"
/></a>
<!-- Responsive Menu Button -->
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-bar-icon"><i class="fas fa-bars"></i></span>
</button>
<!-- Navigation Menu -->
<div id="navbarSupportedContent" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item nl-simple">
<a class="nav-link" href="#services-1">Benefits</a>
</li>
<li class="nav-item nl-simple">
<a class="nav-link" href="#content-1">Features</a>
</li>
<li class="nav-item nl-simple">
<a class="nav-link" href="#reviews-2">Reviews</a>
</li>
<li class="nav-item nl-simple">
<a class="nav-link" href="#faqs-2">FAQs</a>
</li>
<!-- <li class="nav-item nl-simple">
<a class="nav-link nav-icon" href="https://github.com/jamaljsr/polar" target="_blank">
<i class="fab fa-github"></i>
</a>
</li> -->
</ul>
<!-- Header Button -->
<span class="navbar-text white-color">
<a
href="#"
class="dl-primary btn btn-primary-color tra-black-hover"
>Download</a
>
</span>
</div>
<!-- End Navigation Menu -->
</div>
<!-- End container -->
</nav>
<!-- End navbar -->
</header>
<!-- END HEADER -->
<!-- HERO-2
============================================= -->
<section id="hero-2" class="hero-section">
<!-- HERO TEXT -->
<div class="bg-fixed bg-lightgrey hero-2-txt division">
<div class="container">
<div id="hero-2-content" class="row">
<div class="col-md-10 offset-md-1">
<div class="hero-txt text-center">
<!-- Title -->
<h3>
One-click Bitcoin Lightning networks for local app
development & testing
</h3>
<!-- Text -->
<p class="p-md">
Spend less time setting up your development environment, so
you can spend more time building your next killer Lightning
app.
</p>
<!-- HERO NEWSLETTER FORM -->
<form class="hero-newsletter-form">
<!-- Newsletter Inputs -->
<a
class="btn btn-primary-color black-hover dl-primary"
href="#"
>
<i id="hero-dl-icon" class="fas fa-download"></i>
<span id="hero-dl-text">Download</span>
</a>
</form>
<!-- HERO LINKS -->
<div class="hero-links">
<span class="grey-color">
Also available for
<a class="dl-alt1" href="#"></a>
and
<a class="dl-alt2" href="#"></a>. Other downloads
available on
<a href="https://github.com/jamaljsr/polar/releases"
>GitHub</a
>.
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- END HERO TEXT -->
<!-- HERO IMAGE -->
<div class="hero-2-img division">
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 offset-md-1 offset-lg-2">
<div class="video-preview text-center">
<!-- Change the link HERE!!! -->
<a
class="video-popup2"
href="https://www.youtube.com/watch?v=mb37durvPns"
>
<!-- Play Icon -->
<div class="video-btn play-icon-purple">
<div class="video-block-wrapper">
<i class="fas fa-play"></i>
</div>
</div>
<!-- Preview Image -->
<img
class="img-fluid"
src="images/hero-2-img.png"
alt="video-preview"
/>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- END HERO IMAGE -->
</section>
<!-- END HERO-2 -->
<!-- SERVICES-1
============================================= -->
<section id="services-1" class="wide-60 services-section division">
<div class="container">
<div class="row">
<!-- SERVICE BOX #1 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/time.png"
alt="service-icon"
/>
<!-- Title -->
<h5 class="h5-xs steelblue-color">Reduce Setup Time</h5>
<!-- Text -->
<p>
Get started building on Lightning in minutes, instead of
hours, or potentially days, if you setup a local network
manually
</p>
</div>
</div>
<!-- SERVICE BOX #2 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/graphic-design.png"
alt="service-icon"
/>
<!-- Title -->
<h5 class="h5-xs steelblue-color">Visual Experience</h5>
<!-- Text -->
<p>
Say goodbye to the command line and config files. Say hello to
a pleasing graphical interface with all of the same
functionality
</p>
</div>
</div>
<!-- SERVICE BOX #3 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="0.8s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/startup.png"
alt="service-icon"
/>
<!-- Title -->
<h5 class="h5-xs steelblue-color">Improved Productivity</h5>
<!-- Text -->
<p>
Spend more time building your app, and less time building your
developer environment. Iterate faster so you can release
faster
</p>
</div>
</div>
<!-- SERVICE BOX #4 -->
<div class="col-sm-6 col-lg-3">
<div class="sbox-1 wow fadeInUp" data-wow-delay="1s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/chat-2.png"
alt="service-icon"
/>
<!-- Title -->
<h5 class="h5-xs steelblue-color">Open Source</h5>
<!-- Text -->
<p>
The source code is open for all to view. Community
contributions of code, suggestions or issues are welcomed and
appreciated
</p>
</div>
</div>
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- END SERVICES-1 -->
<!-- HORIZONTAL GREY LINE
============================================= -->
<div class="grey-border">
<div class="container">
<div class="row"><div class="col b-bottom"></div></div>
</div>
</div>
<!-- CONTENT-1
============================================= -->
<section id="content-1" class="wide-60 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- TEXT BLOCK -->
<div class="col-md-6">
<div class="txt-block pc-30 wow fadeInUp" data-wow-delay="0.4s">
<!-- Section ID -->
<span class="section-id primary-color">Ease of Access</span>
<!-- Title -->
<h3 class="h3-md steelblue-color">
RPC Connection info at your fingertips
</h3>
<!-- Text -->
<p>
What good are Lightning nodes if you don't know how to connect
to them? Polar surfaces some of the most common pieces of RPC
connection information, which you will need to connect from
your app. You'll also have quick links to the API
documentation for each node.
</p>
<!-- Title -->
<h5 class="h5-md steelblue-color">
Credentials in many formats
</h5>
<!-- CONTENT BOX #1 -->
<div class="box-list m-top-15">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>The full file paths to the certificate and macaroons</p>
</div>
<!-- CONTENT BOX #2 -->
<div class="box-list">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>Some SDKs require credentials in HEX format</p>
</div>
<!-- CONTENT BOX #2 -->
<div class="box-list">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>Other SDKs require credentials in Base64 format</p>
</div>
<!-- CONTENT BOX #3 -->
<div class="box-list">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>
But the cool kids are using
<a href="https://github.com/LN-Zap/lndconnect"
>LNDConnect</a
>
to make connecting to your node even easier
</p>
</div>
</div>
</div>
<!-- END TEXT BLOCK -->
<!-- IMAGE BLOCK -->
<div class="col-md-4">
<div class="img-block wow fadeInUp" data-wow-delay="0.6s">
<img
class="img-fluid content-1-img"
src="images/image-04.png"
alt="content-image"
/>
</div>
</div>
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- END CONTENT-1 -->
<!-- CONTENT-6
============================================= -->
<section
id="content-6"
class="bg-lightgrey pt-100 content-section division"
>
<div class="container">
<div class="row d-flex align-items-center">
<!-- IMAGE BLOCK -->
<div class="col-md-6">
<div class="content-6-img wow fadeInLeft" data-wow-delay="0.6s">
<img
class="img-fluid"
src="images/image-12a.png"
alt="content-image"
srcset="images/image-12.png 2x"
/>
</div>
</div>
<!-- TEXT BLOCK -->
<div class="col-md-6">
<div class="txt-block pc-30 wow fadeInUp" data-wow-delay="0.4s">
<!-- Title -->
<h5 class="h5-md steelblue-color">
Visualize your entire network
</h5>
<!-- Text -->
<p>
They say a picture is worth a thousand words. Well, how many
terminal commands is a sexy Lightning Network graph worth?
</p>
<!-- Title -->
<h5 class="h5-md steelblue-color">
Quickly identify channel balances
</h5>
<!-- Text -->
<p>
Save a ton of time, and key-strokes, by viewing channel
balances in color. The green & blue lines shift as payments
are sent from one node to another. Keep in mind, the green
side is where the money started.
</p>
<!-- Title -->
<h5 class="h5-md steelblue-color">Drag-n-drop Actions</h5>
<!-- Text -->
<p>
It couldn't be easier to open channels from one node to
another by simply dragging and dropping. Move nodes around,
into any layout that you prefer. You can also drag new nodes
from the sidebar onto the canvas.
</p>
</div>
</div>
<!-- END TEXT BLOCK -->
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- END CONTENT-6 -->
<!-- CONTENT-7
============================================= -->
<section id="content-7" class="wide-60 content-section division">
<div class="container">
<div class="row d-flex align-items-center">
<!-- TEXT BLOCK -->
<div class="col-md-6 col-xl-6">
<div class="txt-block pc-30 wow fadeInUp" data-wow-delay="0.4s">
<!-- Section ID -->
<span class="section-id primary-color"
>Maximum Flexibility</span
>
<!-- Title -->
<h3 class="h3-md steelblue-color">
Create as many networks as you like
</h3>
<!-- Text -->
<p>
Have you ever been working on your app with a local network
and wanted to quickly simulate a completely different
scenario? Resetting your network, then bringing then state
back is no walk in the park. With Polar, you can have as many
network configurations as you can imagine. You can even have
multiple of them running at the same time.
</p>
</div>
</div>
<!-- END TEXT BLOCK -->
<!-- IMAGE BLOCK -->
<div class="col-md-6 col-xl-5 offset-xl-1">
<div class="content-7-img wow fadeInRight" data-wow-delay="0.6s">
<img
class="img-fluid"
src="images/image-08a.png"
alt="content-image"
srcset="images/image-08.png 2x"
/>
</div>
</div>
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- END CONTENT-7 -->
<!-- CONTENT-2
============================================= -->
<section
id="content-2"
class="grey-textured wide-60 content-section division"
>
<div class="container white-color">
<div class="row d-flex align-items-center">
<!-- IMAGE BLOCK -->
<div class="col-md-6">
<div class="img-block wow fadeInUp" data-wow-delay="0.6s">
<img
class="img-fluid"
src="images/image-01a.png"
alt="content-image"
srcset="images/image-01.png 2x"
/>
</div>
</div>
<!-- TEXT BLOCK -->
<div class="col-md-6">
<div class="txt-block pc-30 wow fadeInUp" data-wow-delay="0.4s">
<!-- Section ID -->
<span class="section-id white-color"
>Simplified Administration</span
>
<!-- Title -->
<h3 class="h3-md">Manage your nodes with just a few clicks</h3>
<!-- Text -->
<p>
Many of the most common actions you would perform on Lightning
are made available right there in the UI.
</p>
<!-- Title -->
<h5 class="h5-md">What can I do?</h5>
<!-- CONTENT BOX #1 -->
<div class="box-list m-top-15">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>
The bitcoin nodes in your network act as faucets, so you can
easily deposit regtest coins into any of the Lightning nodes
with just a click.
</p>
</div>
<!-- CONTENT BOX #2 -->
<div class="box-list">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>
Quickly open channels and pay invoices between multiple
nodes
</p>
</div>
<!-- CONTENT BOX #2 -->
<div class="box-list">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>Start, stop and remove nodes from the network</p>
</div>
<!-- CONTENT BOX #3 -->
<div class="box-list">
<div class="box-list-icon">
<i class="fas fa-genderless"></i>
</div>
<p>
For those command line ninjas, there's also a built-in
terminal which gives you full access to the node's CLI
commands
</p>
</div>
</div>
</div>
<!-- END TEXT BLOCK -->
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- END CONTENT-2 -->
<!-- SERVICES-8
============================================= -->
<section id="services-8" class="wide-50 services-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Title -->
<h3 class="h3-md steelblue-color">But wait, there's more...</h3>
<!-- Text -->
<p class="p-md">
Polar has a few more tricks up its sleeve to help make your
Lightning development experience even more enjoyable
</p>
</div>
</div>
<!-- END SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1">
<div class="row">
<!-- SERVICE BOX #1 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/cloud-computing-1.png"
alt="service-icon"
/>
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Easy Node Updates</h5>
<p class="grey-color">
When new versions of Lightning or Bitcoin node software
is released, all it takes is a few clicks to begin using
them. Our goal is to make new versions available within
24 hours after final builds are available
</p>
</div>
</div>
</div>
<!-- SERVICE BOX #2 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/browser-5.png"
alt="service-icon"
/>
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">
Simulate Chain Splits
</h5>
<p class="grey-color">
With the ability to stop individual nodes, you can
simulate a chain split by stopping one of three Bitcoin
nodes, then mining on the other two separately, they
will be operating on different chains.
</p>
</div>
</div>
</div>
<!-- SERVICE BOX #3 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.4s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/cloud-computing.png"
alt="service-icon"
/>
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Multiple Platforms</h5>
<p class="grey-color">
Polar was built with cross-platform support in mind from
the beginning. Using tools like Electron and Docker, you
can speed up your workflow whether you are on Mac,
Windows or Linux.
</p>
</div>
</div>
</div>
<!-- SERVICE BOX #4 -->
<div class="col-sm-6">
<div class="sbox-4 wow fadeInUp" data-wow-delay="0.6s">
<!-- Icon -->
<img
class="img-70"
src="images/icons/worldwide-1.png"
alt="service-icon"
/>
<!-- Text -->
<div class="sbox-4-txt">
<h5 class="h5-sm steelblue-color">Multiple Languages</h5>
<p class="grey-color">
Available for English, French, German, Spanish, Russian,
Italian, Chinese Simplified, Portuguese-Brazilian,
Japanese, Korean. Help translate more by contributing to
the
<a
href="https://crowdin.com/project/polar"
target="_blank"
>Crowdin</a
>
project.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- END SERVICES-8 -->
<!-- STATISTIC-2
============================================= -->
<div id="statistic-2" class="bg-lightgrey statistic-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Text -->
<p class="p-md">
Multiple Bitcoin and Lightning nodes can be mixed and matched in
a network to simulate many scenarios for testing. Here are the
latest versions supported.
</p>
</div>
</div>
<div class="row">
<!-- STATISTIC BLOCK #1 -->
<div class="col-sm-6 col-md-3">
<div
class="statistic-block icon-xs wow fadeInUp"
data-wow-delay="0.4s"
>
<!-- Icon -->
<img
class="img-70"
src="images/bw_lnlabs.png"
alt="service-icon"
/>
<!-- Text -->
<h5 class="statistic-number steelblue-color">v0.18.x</h5>
<p class="txt-400">LND</p>
</div>
</div>
<!-- STATISTIC BLOCK #2 -->
<div class="col-sm-6 col-md-3">
<div
class="statistic-block icon-xs wow fadeInUp"
data-wow-delay="0.6s"
>
<!-- Icon -->
<img
class="img-70"
src="images/bw_blockstream.png"
alt="service-icon"
/>
<!-- Text -->
<h5 class="statistic-number steelblue-color">v24.x</h5>
<p class="txt-400">Core Lightning</p>
</div>
</div>
<!-- STATISTIC BLOCK #2 -->
<div class="col-sm-6 col-md-3">
<div
class="statistic-block icon-xs wow fadeInUp"
data-wow-delay="0.6s"
>
<!-- Icon -->
<img
class="img-70"
src="images/bw_eclair.png"
alt="service-icon"
/>
<!-- Text -->
<h5 class="statistic-number steelblue-color">v0.10.x</h5>
<p class="txt-400">Eclair</p>
</div>
</div>
<!-- STATISTIC BLOCK #3 -->
<div class="col-sm-6 col-md-3">
<div
class="statistic-block icon-xs wow fadeInUp"
data-wow-delay="0.8s"
>
<!-- Icon -->
<img
class="img-70"
src="images/bw_bitcoin_core.png"
alt="service-icon"
/>
<!-- Text -->
<h5 class="statistic-number steelblue-color">v27.x</h5>
<p class="txt-400">Bitcoin Core</p>
</div>
</div>
</div>
<!-- End row -->
</div>
<!-- End container -->
</div>
<!-- END STATISTIC-2 -->
<!-- TESTIMONIALS-2
============================================= -->
<section id="reviews-2" class="wide-80 reviews-section division">
<div class="container">
<!-- SECTION TITLE -->
<div class="row">
<div class="col-lg-10 offset-lg-1 section-title">
<!-- Title -->
<h3 class="h3-md steelblue-color">What Bitcoiners Are Saying</h3>
<!-- Text -->
<p class="p-md">
Polar has received some great feedback from the community.
Here's what some Lightning developers and enthusiasts have to
say about it...
</p>
</div>
</div>
<!-- TESTIMONIALS CONTENT -->
<div class="row">
<div class="col-md-12 reviews-grid">
<div class="masonry-wrap grid-loaded">
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img
src="images/twitter/wbobeirne.png"
alt="testimonial-avatar"
/>
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Will O'Beirne</h5>
<a
target="_blank"
href="https://twitter.com/wbobeirne/status/1193967484128370694"
>@wbobeirne</a
>
</div>
</div>
<!-- End Testimonial Author -->
<!-- Testimonial Text -->
<p>
Easily the biggest development for Lightning creators yet.
If you're looking to build lightning apps or already doing
so, Polar is a must have.
</p>
</div>
</div>
<!--END TESTIMONIAL -->
<!-- TESTIMONIAL -->
<div class="review-2">
<div class="review-txt">
<!-- Testimonial Author -->
<div class="author-data clearfix">
<!-- Author Avatar -->
<div class="testimonial-avatar">
<img
src="images/twitter/actuallyCarlaKC.jpg"
alt="testimonial-avatar"
/>
</div>
<!-- Author Data -->
<div class="review-author">
<h5 class="h5-xs">Carla Kirk-Cohen</h5>
<a