-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
2049 lines (2029 loc) · 183 KB
/
index.html
File metadata and controls
2049 lines (2029 loc) · 183 KB
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>
<!--?xml encoding="UTF-8" ?--><html lang="en-US">
<head>
<meta charset="UTF-8">
<!--/ Open Graphite Start /-->
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bitshares.international">
<meta property="og:title" content="BitShares Blockchain">
<meta property="og:description" content="Join the financial revolution with the most advanced blockchain platform to run decentralized fintech.">
<meta property="og:site_name" content="BitShares Blockchain">
<meta property="og:image" content="./images/6305d9eddcf541d0fb5976cfa.png">
<meta property="og:image:width" content="735">
<meta property="og:image:height" content="735">
<meta itemtype="website">
<meta itemprop="description" content="Join the financial revolution with the most advanced blockchain platform to run decentralized fintech.">
<meta itemprop="image" content="https://bitshares.international/wp-content/uploads/2023/05/6305d9eddcf541d0fb5976cfa.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://bitshares.international">
<meta name="twitter:title" content="BitShares Blockchain">
<meta name="twitter:description" content="Join the financial revolution with the most advanced blockchain platform to run decentralized fintech.">
<meta name="twitter:image" content="https://bitshares.international/wp-content/uploads/2023/05/6305d9eddcf541d0fb5976cfa.png">
<meta name="twitter:creator" content="@BitSharesGroup">
<meta name="twitter:site" content="BitShares Blockchain">
<!--/ Open Graphite End /-->
<title>BitShares Blockchain</title>
<meta name="robots" content="max-image-preview:large">
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<link rel="alternate" type="application/rss+xml" title="BitShares Blockchain » Feed" href="https://bitshares.international/feed/">
<link rel="alternate" type="application/rss+xml" title="BitShares Blockchain » Comments Feed" href="https://bitshares.international/comments/feed/">
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"./wp-includes\/js\/wp-emoji-release.min.js?ver=6.8.3"}};
/*! This file is auto-generated */
!function(s,n){var o,i,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),a=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===a[t]})}function u(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);for(var n=e.getImageData(16,16,1,1),a=0;a<n.data.length;a++)if(0!==n.data[a])return!1;return!0}function f(e,t,n,a){switch(t){case"flag":return n(e,"🏳️⚧️","🏳️⚧️")?!1:!n(e,"🇨🇶","🇨🇶")&&!n(e,"🏴","🏴");case"emoji":return!a(e,"")}return!1}function g(e,t,n,a){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):s.createElement("canvas"),o=r.getContext("2d",{willReadFrequently:!0}),i=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(function(e){i[e]=t(o,e,n,a)}),i}function t(e){var t=s.createElement("script");t.src=e,t.defer=!0,s.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",i=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){s.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+g.toString()+"("+[JSON.stringify(i),f.toString(),p.toString(),u.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"}),r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=function(e){c(n=e.data),r.terminate(),t(n)})}catch(e){}c(n=g(i,f,p,u))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<style id="wp-emoji-styles-inline-css">img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<style id="global-styles-inline-css">:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:root { --wp--style--global--content-size: 800px;--wp--style--global--wide-size: 1200px; }:where(body) { margin: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: 24px; margin-block-end: 0; }:where(.wp-site-blocks) > :first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child { margin-block-end: 0; }:root { --wp--style--block-gap: 24px; }:root :where(.is-layout-flow) > :first-child{margin-block-start: 0;}:root :where(.is-layout-flow) > :last-child{margin-block-end: 0;}:root :where(.is-layout-flow) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-constrained) > :first-child{margin-block-start: 0;}:root :where(.is-layout-constrained) > :last-child{margin-block-end: 0;}:root :where(.is-layout-constrained) > *{margin-block-start: 24px;margin-block-end: 0;}:root :where(.is-layout-flex){gap: 24px;}:root :where(.is-layout-grid){gap: 24px;}.is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}.is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}.is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}.is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}a:where(:not(.wp-element-button)){text-decoration: underline;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;line-height: inherit;padding: calc(0.667em + 2px) calc(1.333em + 2px);text-decoration: none;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}</style>
<link rel="stylesheet" id="hello-elementor-css" href="./css/hello-elementor-style.min.css" media="all">
<link rel="stylesheet" id="hello-elementor-theme-style-css" href="./css/hello-elementor-theme.min.css" media="all">
<link rel="stylesheet" id="hello-elementor-header-footer-css" href="./css/hello-elementor-header-footer.min.css" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="./css/elementor-assets-css-frontend.min.css" media="all">
<link rel="stylesheet" id="elementor-post-6-css" href="./css/elementor-css-post-6.css" media="all">
<link rel="stylesheet" id="elementor-icons-css" href="./css/elementor-assets-lib-eicons-css-elementor-icons.min.css" media="all">
<link rel="stylesheet" id="widget-image-css" href="./css/elementor-assets-css-widget-image.min.css" media="all">
<link rel="stylesheet" id="widget-heading-css" href="./css/elementor-assets-css-widget-heading.min.css" media="all">
<link rel="stylesheet" id="widget-spacer-css" href="./css/elementor-assets-css-widget-spacer.min.css" media="all">
<link rel="stylesheet" id="e-animation-fadeInLeft-css" href="./css/elementor-assets-lib-animations-styles-fadeInLeft.min.css" media="all">
<link rel="stylesheet" id="e-animation-fadeInRight-css" href="./css/elementor-assets-lib-animations-styles-fadeInRight.min.css" media="all">
<link rel="stylesheet" id="widget-video-css" href="./css/elementor-assets-css-widget-video.min.css" media="all">
<link rel="stylesheet" id="e-animation-fadeInUp-css" href="./css/elementor-assets-lib-animations-styles-fadeInUp.min.css" media="all">
<link rel="stylesheet" id="widget-counter-css" href="./css/elementor-assets-css-widget-counter.min.css" media="all">
<link rel="stylesheet" id="widget-image-box-css" href="./css/elementor-assets-css-widget-image-box.min.css" media="all">
<link rel="stylesheet" id="widget-icon-list-css" href="./css/elementor-assets-css-widget-icon-list.min.css" media="all">
<link rel="stylesheet" id="e-animation-shrink-css" href="./css/elementor-assets-lib-animations-styles-e-animation-shrink.min.css" media="all">
<link rel="stylesheet" id="widget-star-rating-css" href="./css/elementor-assets-css-widget-star-rating.min.css" media="all">
<link rel="stylesheet" id="widget-divider-css" href="./css/elementor-assets-css-widget-divider.min.css" media="all">
<link rel="stylesheet" id="widget-social-icons-css" href="./css/elementor-assets-css-widget-social-icons.min.css" media="all">
<link rel="stylesheet" id="e-apple-webkit-css" href="./css/elementor-assets-css-conditionals-apple-webkit.min.css" media="all">
<link rel="stylesheet" id="elementor-post-10-css" href="./css/elementor-css-post-10.css" media="all">
<link rel="stylesheet" id="elementor-gf-local-titilliumweb-css" href="./css/elementor-google-fonts-css-titilliumweb.css" media="all">
<link rel="stylesheet" id="elementor-gf-local-opensans-css" href="./css/elementor-google-fonts-css-opensans.css" media="all">
<link rel="stylesheet" id="elementor-gf-local-rubik-css" href="./css/elementor-google-fonts-css-rubik.css" media="all">
<link rel="stylesheet" id="elementor-gf-local-nunito-css" href="./css/elementor-google-fonts-css-nunito.css" media="all">
<link rel="stylesheet" id="elementor-gf-local-karla-css" href="./css/elementor-google-fonts-css-karla.css" media="all">
<link rel="stylesheet" id="elementor-gf-local-opensanshebrew-css" href="./css/elementor-google-fonts-css-opensanshebrew.css" media="all">
<link rel="stylesheet" id="elementor-icons-shared-0-css" href="./css/elementor-assets-lib-font-awesome-css-fontawesome.min.css" media="all">
<link rel="stylesheet" id="elementor-icons-fa-solid-css" href="./css/elementor-assets-lib-font-awesome-css-solid.min.css" media="all">
<link rel="stylesheet" id="elementor-icons-fa-brands-css" href="./css/elementor-assets-lib-font-awesome-css-brands.min.css" media="all">
<script src="./js/jquery-jquery.min.js" id="jquery-core-js"></script>
<script src="./js/jquery-jquery-migrate.min.js" id="jquery-migrate-js"></script>
<link rel="https://api.w.org/" href="https://bitshares.international/wp-json/">
<link rel="alternate" title="JSON" type="application/json" href="https://bitshares.international/wp-json/wp/v2/pages/10">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://bitshares.international/xmlrpc.php?rsd">
<meta name="generator" content="WordPress 6.8.3">
<link rel="canonical" href="https://bitshares.international/">
<link rel="shortlink" href="https://bitshares.international/">
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://bitshares.international/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fbitshares.international%2F">
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://bitshares.international/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fbitshares.international%2F&format=xml">
<meta name="generator" content="Elementor 3.33.2; features: additional_custom_breakpoints; settings: css_print_method-external, google_font-enabled, font_display-swap">
<style>.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
@media screen and (max-height: 1024px) {
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}
@media screen and (max-height: 640px) {
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
background-image: none !important;
}
}</style>
<link rel="icon" href="./images/cropped-logo-1-32x32.png" sizes="32x32">
<link rel="icon" href="./images/cropped-logo-1-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="./images/cropped-logo-1-180x180.png">
<meta name="msapplication-TileImage" content="https://bitshares.international/wp-content/uploads/2023/03/cropped-logo-1-270x270.png">
<style id="wp-custom-css">.elementor-10 .elementor-element.elementor-element-1036d978 {
padding: 1em 0em 0em 0em !important;
}</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
</head>
<body class="home wp-singular page-template page-template-elementor_canvas page page-id-10 wp-embed-responsive wp-theme-hello-elementor theme-default elementor-default elementor-template-canvas elementor-kit-6 elementor-page elementor-page-10"><div data-elementor-type="wp-post" data-elementor-id="10" class="elementor elementor-10">
<section class="elementor-section elementor-top-section elementor-element elementor-element-1036d978 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1036d978" data-element_type="section" data-settings="{"background_background":"classic","stretch_section":"section-stretched"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-386542d4" data-id="386542d4" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-7ab46a8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7ab46a8" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-49ac9474 elementor-invisible" data-id="49ac9474" data-element_type="column" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b5199f4 elementor-widget__width-auto elementor-widget elementor-widget-image" data-id="b5199f4" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img fetchpriority="high" decoding="async" width="256" height="256" src="./images/2023-03-logo.png" class="attachment-large size-large wp-image-102" alt="" srcset="./images/2023-03-logo.png 256w, ./images/2023-03-logo-150x150.png 150w" sizes="(max-width: 256px) 100vw, 256px"> </div>
</div>
<div class="elementor-element elementor-element-4a1def04 elementor-widget elementor-widget-heading" data-id="4a1def04" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h1 class="elementor-heading-title elementor-size-default">BitShares Blockchain</h1> </div>
</div>
<div class="elementor-element elementor-element-5b2e44d9 elementor-widget elementor-widget-text-editor" data-id="5b2e44d9" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Join the financial revolution with the most advanced blockchain platform to run decentralized fintech. Our innovative Blockchain as Organization (BaO) architecture integrates financial technologies into an efficient, transparent, and reliable financial ecosystem.</p> </div>
</div>
<div class="elementor-element elementor-element-607e86d9 elementor-widget elementor-widget-spacer" data-id="607e86d9" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5dd07e19 elementor-invisible" data-id="5dd07e19" data-element_type="column" data-settings="{"animation":"fadeInRight","background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-49a1da8 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="49a1da8" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://bitshares.github.io/docs/#/whitepaper">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">whitepaper</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2be29272 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="2be29272" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://bitshares.github.io/docs/#/bitshares-core">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">CORE NODE</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-33584042 elementor-widget elementor-widget-image" data-id="33584042" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img decoding="async" width="557" height="896" src="./images/2023-03-bitshares.png" class="attachment-medium_large size-medium_large wp-image-488" alt="" srcset="./images/2023-03-bitshares.png 557w, ./images/2023-03-bitshares-186x300.png 186w" sizes="(max-width: 557px) 100vw, 557px"> </div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-17b0a557 elementor-hidden-tablet elementor-widget elementor-widget-spacer" data-id="17b0a557" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-1b47eac4 elementor-hidden-tablet elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1b47eac4" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-4bb06192 elementor-hidden-mobile elementor-invisible" data-id="4bb06192" data-element_type="column" data-settings="{"background_background":"classic","animation":"fadeInUp"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1c16d6f6 elementor-widget__width-auto elementor-widget elementor-widget-heading" data-id="1c16d6f6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default"> How Does it work?</h4> </div>
</div>
<div class="elementor-element elementor-element-afbf2ae elementor-widget elementor-widget-video" data-id="afbf2ae" data-element_type="widget" data-settings="{"youtube_url":"https:\/\/www.youtube.com\/watch?v=dA-1p4YLKf8","video_type":"youtube","controls":"yes"}" data-widget_type="video.default">
<div class="elementor-widget-container">
<div class="elementor-wrapper elementor-open-inline">
<div class="elementor-video"></div> </div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-706daee6" data-id="706daee6" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-104f0eba elementor-widget__width-auto elementor-widget-mobile__width-inherit elementor-widget elementor-widget-counter" data-id="104f0eba" data-element_type="widget" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-title">Users</div> <div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="2" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix"> M+</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-9618573 elementor-widget__width-auto elementor-widget-mobile__width-inherit elementor-widget elementor-widget-counter" data-id="9618573" data-element_type="widget" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-title">Assets</div> <div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="7" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix"> K+</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2ccfb42b elementor-widget__width-auto elementor-widget-mobile__width-inherit elementor-widget elementor-widget-counter" data-id="2ccfb42b" data-element_type="widget" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-title">Liquidity Pools</div> <div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="2000" data-to-value="500" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-54d715d elementor-widget elementor-widget-spacer" data-id="54d715d" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-35c346e0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="35c346e0" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-4a5bdb2d" data-id="4a5bdb2d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-40cd4b68 elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="40cd4b68" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-5c192611 elementor-invisible" data-id="5c192611" data-element_type="column" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-788667f6 elementor-position-top elementor-widget elementor-widget-image-box" data-id="788667f6" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" width="159" height="159" src="./images/2023-03-Icon-Protection-data.png" class="attachment-full size-full wp-image-17" alt="" srcset="./images/2023-03-Icon-Protection-data.png 159w, ./images/2023-03-Icon-Protection-data-150x150.png 150w" sizes="(max-width: 159px) 100vw, 159px"></figure><div class="elementor-image-box-content">
<h5 class="elementor-image-box-title">Dynamic Account Permissions</h5>
<p class="elementor-image-box-description">User-Friendly accounts controlled via weighted combinations of one or multiple private keys to ensure your maximum security.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-72b9edc1 elementor-position-top elementor-widget elementor-widget-image-box" data-id="72b9edc1" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" width="159" height="159" src="./images/2023-03-Icon-Protection-data.png" class="attachment-full size-full wp-image-17" alt="" srcset="./images/2023-03-Icon-Protection-data.png 159w, ./images/2023-03-Icon-Protection-data-150x150.png 150w" sizes="(max-width: 159px) 100vw, 159px"></figure><div class="elementor-image-box-content">
<h5 class="elementor-image-box-title">Node Built-in API Interface</h5>
<p class="elementor-image-box-description">BitShares node has a built-in API that enables any interface to interact easily with Blockchain without the need of maintaining a separate software.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-640cfa6b elementor-position-top elementor-widget elementor-widget-image-box" data-id="640cfa6b" data-element_type="widget" data-widget_type="image-box.default">
<div class="elementor-widget-container">
<div class="elementor-image-box-wrapper">
<figure class="elementor-image-box-img"><img decoding="async" width="159" height="159" src="./images/2023-03-Icon-Protection-data.png" class="attachment-full size-full wp-image-17" alt="" srcset="./images/2023-03-Icon-Protection-data.png 159w, ./images/2023-03-Icon-Protection-data-150x150.png 150w" sizes="(max-width: 159px) 100vw, 159px"></figure><div class="elementor-image-box-content">
<h5 class="elementor-image-box-title">Open Source Clients</h5>
<p class="elementor-image-box-description">BitShares users can login easily with their Blockchain accounts using an easy browser based open source wallet.</p>
</div>
</div> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-482e5e71 elementor-invisible" data-id="482e5e71" data-element_type="column" data-settings="{"animation":"fadeInRight"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-274acdda elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="274acdda" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
<div class="elementor-element elementor-element-19dab4a1 elementor-widget elementor-widget-heading" data-id="19dab4a1" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Decentralized Digital Stocks and Assets Network</h2> </div>
</div>
<div class="elementor-element elementor-element-24376ce0 elementor-widget elementor-widget-text-editor" data-id="24376ce0" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>BitShares Blockchain is a leading global financial markets infrastructure and data provider that is being developed through a Blockchain built-in decentralized organization combines a development and investment community working around the utility token BTS.</p>
<p>Unlock your financial potential: enrich your digital assets with a lightning-fast speed infrastructure, ultra-low fees, and total security. Access advanced financial services like decentralized liquidity pools, orderbooks, swap protocols, stable-coins, and much more.</p>
<p>With our open approach, trusted expertise and global scale, we enable the sustainable growth and stability of our users and their communities by decentralizing a fully scalable system to enhance capital formation and trade execution; and manage clearing and financial risks.</p>
<div class="tr-Grid-item"><div class="tr-VerticalSpacing tr-VerticalSpacing--xl"><div class="tr-RichText "><p> </p></div></div></div> </div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-79ad4d2 elementor-hidden-tablet elementor-widget elementor-widget-spacer" data-id="79ad4d2" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-33b2b5f elementor-widget elementor-widget-heading" data-id="33b2b5f" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Blockchain Innovations</h2> </div>
</div>
<div class="elementor-element elementor-element-31e34702 elementor-icon-list--layout-inline elementor-align-center elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="31e34702" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items elementor-inline-items">
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Exchange (DEX)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized User Issued Asset (UIA)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Market Pegged Asset (MPA) </span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Smart Assets (Smart Contracts)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Finance (DeFi)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Liquidity Pools (LP)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Automated Market Maker (AMM)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Prediction Market (PM)</span>
</li>
<li class="elementor-icon-list-item elementor-inline-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-check"></i> </span>
<span class="elementor-icon-list-text">Decentralized Non-Fungible Token (NFT)</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-687351c1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="687351c1" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7e1c9b4c" data-id="7e1c9b4c" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5b3886b4 elementor-widget elementor-widget-heading" data-id="5b3886b4" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">BTS Token Exchange Listing</h2> </div>
</div>
<div class="elementor-element elementor-element-25a57368 elementor-widget elementor-widget-spacer" data-id="25a57368" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-43f3af1e elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="43f3af1e" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-517985bb" data-id="517985bb" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5c1a39d elementor-widget elementor-widget-image" data-id="5c1a39d" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="208" height="96" src="./images/2025-11-gate.png" class="attachment-large size-large wp-image-1185" alt=""> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5e47e749" data-id="5e47e749" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1874bd4 elementor-widget elementor-widget-image" data-id="1874bd4" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="500" height="150" src="./images/2025-11-poloniex-logo.png" class="attachment-large size-large wp-image-1188" alt="" srcset="./images/2025-11-poloniex-logo.png 500w, ./images/2025-11-poloniex-logo-300x90.png 300w" sizes="(max-width: 500px) 100vw, 500px"> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-14aeae14" data-id="14aeae14" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9c21020 elementor-widget elementor-widget-image" data-id="9c21020" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="719" height="260" src="./images/2025-11-mexc.png" class="attachment-large size-large wp-image-1187" alt="" srcset="./images/2025-11-mexc.png 719w, ./images/2025-11-mexc-300x108.png 300w" sizes="(max-width: 719px) 100vw, 719px"> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-d012323 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="d012323" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1e45c75" data-id="1e45c75" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-0bdc758 elementor-widget elementor-widget-image" data-id="0bdc758" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="640" height="480" src="./images/2025-11-simpleswap.png" class="attachment-large size-large wp-image-1189" alt="" srcset="./images/2025-11-simpleswap.png 640w, ./images/2025-11-simpleswap-300x225.png 300w" sizes="(max-width: 640px) 100vw, 640px"> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-b567374" data-id="b567374" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-9ae3046" data-id="9ae3046" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-095f331 elementor-widget elementor-widget-image" data-id="095f331" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="200" height="92" src="./images/2025-11-LATOKEN-No-Background-1.png" class="attachment-large size-large wp-image-1190" alt=""> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-1583afa elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="1583afa" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-935e14a" data-id="935e14a" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-ade2411" data-id="ade2411" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-53da420a elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="53da420a" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-bc7b921 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="bc7b921" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ff466c8" data-id="ff466c8" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-af25d9d elementor-widget elementor-widget-heading" data-id="af25d9d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">BitShares Blockchain Over Media</h2> </div>
</div>
<div class="elementor-element elementor-element-6733fe6 elementor-widget elementor-widget-spacer" data-id="6733fe6" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-92d170b elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="92d170b" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-3c2f899" data-id="3c2f899" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-93ad447 elementor-widget elementor-widget-image" data-id="93ad447" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.forbes.com/sites/rogeraitken/2017/11/08/waves-set-to-become-fastest-decentralized-blockchain-platform-globally">
<img loading="lazy" decoding="async" width="379" height="92" src="./images/2023-03-forbes.png" class="attachment-large size-large wp-image-528" alt="" srcset="./images/2023-03-forbes.png 379w, ./images/2023-03-forbes-300x73.png 300w" sizes="(max-width: 379px) 100vw, 379px"> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-a5c0a61" data-id="a5c0a61" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c06de7e elementor-widget elementor-widget-image" data-id="c06de7e" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://www.cnbc.com/2018/05/31/a-blockchain-start-up-just-raised-4-billion-without-a-live-product.html">
<img loading="lazy" decoding="async" width="379" height="92" src="./images/2023-03-cnbc_logo.png" class="attachment-large size-large wp-image-530" alt="" srcset="./images/2023-03-cnbc_logo.png 379w, ./images/2023-03-cnbc_logo-300x73.png 300w" sizes="(max-width: 379px) 100vw, 379px"> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-12706ae" data-id="12706ae" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f497ac4 elementor-widget elementor-widget-image" data-id="f497ac4" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://news.bitcoin.com/top-10-pow-dominance-evaporates-9-years-later-only-two-proof-of-work-coins-will-remain-after-the-merge/">
<img loading="lazy" decoding="async" width="379" height="92" src="./images/2023-03-bitcoincom_logo.png" class="attachment-large size-large wp-image-531" alt="" srcset="./images/2023-03-bitcoincom_logo.png 379w, ./images/2023-03-bitcoincom_logo-300x73.png 300w" sizes="(max-width: 379px) 100vw, 379px"> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-8487eac" data-id="8487eac" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-92230b6 elementor-widget elementor-widget-image" data-id="92230b6" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://cointelegraph.com/news/bitshares-101-basics-of-the-worlds-4th-most-popular-cryptocurrency">
<img loading="lazy" decoding="async" width="379" height="92" src="./images/2023-03-clete_logo.png" class="attachment-large size-large wp-image-539" alt="" srcset="./images/2023-03-clete_logo.png 379w, ./images/2023-03-clete_logo-300x73.png 300w" sizes="(max-width: 379px) 100vw, 379px"> </a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-4536940 elementor-widget elementor-widget-image" data-id="4536940" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://finance.yahoo.com/news/why-dollar-pegged-stablecoin-bitusd-114939384.html">
<img loading="lazy" decoding="async" width="379" height="92" src="./images/2023-03-yahoo_logo.png" class="attachment-large size-large wp-image-535" alt="" srcset="./images/2023-03-yahoo_logo.png 379w, ./images/2023-03-yahoo_logo-300x73.png 300w" sizes="(max-width: 379px) 100vw, 379px"> </a>
</div>
</div>
<div class="elementor-element elementor-element-ec5ddcc elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="ec5ddcc" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-2f8afe0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2f8afe0" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-60745cc" data-id="60745cc" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-cc34450 elementor-widget elementor-widget-heading" data-id="cc34450" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">BitShares Blockchain Technology Partners</h2> </div>
</div>
<div class="elementor-element elementor-element-48a4a1c elementor-widget elementor-widget-spacer" data-id="48a4a1c" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-4cceb99 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="4cceb99" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-c3d3e38" data-id="c3d3e38" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-2bdd2f4 elementor-widget elementor-widget-image" data-id="2bdd2f4" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://btwty.com">
<img loading="lazy" decoding="async" width="150" height="150" src="./images/2023-05-b20-150x150.png" class="attachment-thumbnail size-thumbnail wp-image-1074" alt="" srcset="./images/2023-05-b20-150x150.png 150w, ./images/2023-05-b20-300x300.png 300w, ./images/2023-05-b20.png 512w" sizes="(max-width: 150px) 100vw, 150px"> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-9e2b64e" data-id="9e2b64e" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-09320d7 elementor-widget elementor-widget-image" data-id="09320d7" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://xbts.io">
<img loading="lazy" decoding="async" width="218" height="66" src="./images/2023-05-download.png" class="attachment-medium size-medium wp-image-1092" alt=""> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-3d26255" data-id="3d26255" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-c60527e elementor-widget elementor-widget-image" data-id="c60527e" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://iobanker.com">
<img loading="lazy" decoding="async" width="198" height="44" src="./images/2023-05-logo-ico-blue.png" class="attachment-large size-large wp-image-1084" alt=""> </a>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-40fecd7" data-id="40fecd7" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b557e86 elementor-widget elementor-widget-image" data-id="b557e86" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<a href="https://artcasa.gallery">
<img loading="lazy" decoding="async" width="305" height="77" src="./images/2023-05-photo_2021-04-10_21-33-04.png" class="attachment-large size-large wp-image-1085" alt="" srcset="./images/2023-05-photo_2021-04-10_21-33-04.png 305w, ./images/2023-05-photo_2021-04-10_21-33-04-300x76.png 300w" sizes="(max-width: 305px) 100vw, 305px"> </a>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-6406171 elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="6406171" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-51ebc4b0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="51ebc4b0" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-15c137c4" data-id="15c137c4" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-498f5aca elementor-widget elementor-widget-heading" data-id="498f5aca" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">BitShares Blockchain Use Cases</h2> </div>
</div>
<div class="elementor-element elementor-element-5945bde1 elementor-widget elementor-widget-spacer" data-id="5945bde1" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-3234eaea elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="3234eaea" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1e36de58" data-id="1e36de58" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-36d81785 elementor-widget elementor-widget-heading" data-id="36d81785" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Company Shares
</h5> </div>
</div>
<div class="elementor-element elementor-element-47a317db elementor-widget elementor-widget-text-editor" data-id="47a317db" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Corporate shares are heavily regulated by the SEC, but none of those regulations prevent them from being issued or traded on an alternative trading system. The regulations in many jurisdictions require all shares to be registered. BitShares blockchain shares can be used as collateral for a bond or be used in any number of smart assets.</p> </div>
</div>
<div class="elementor-element elementor-element-76028509 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="76028509" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docs.bitshares.build/docs/functions-and-features/tokens-factory/">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn more</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-48bdd071" data-id="48bdd071" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-31c0a69d elementor-widget elementor-widget-heading" data-id="31c0a69d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Event Tickets</h5> </div>
</div>
<div class="elementor-element elementor-element-1cb11e43 elementor-widget elementor-widget-text-editor" data-id="1cb11e43" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Event tickets are a largely unregulated use case for user-issued assets. Tickets to a school play could be issued as digital tokens that are auctioned off to the highest bidder, who would then resell them. This ensures that the ticket issuer raises as much money as possible up front, while transferring the risk of ticket sales on to speculators.</p> </div>
</div>
<div class="elementor-element elementor-element-740d01c0 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="740d01c0" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docs.bitshares.build/docs/functions-and-features/tokens-factory/">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn more</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-1bb7bae8" data-id="1bb7bae8" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-2e9dbf6e elementor-widget elementor-widget-heading" data-id="2e9dbf6e" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Digital Property
</h5> </div>
</div>
<div class="elementor-element elementor-element-2f16bc0d elementor-widget elementor-widget-text-editor" data-id="2f16bc0d" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Software and music licenses can be made transferable by issuing them as a digital asset. Every copy of a program can check to make sure that the user has control of a token before running. Software implementing such a licensing scheme can remain functional even if the company that produced the license goes out of business.</p> </div>
</div>
<div class="elementor-element elementor-element-53b2573b elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="53b2573b" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docs.bitshares.build/docs/functions-and-features/tokens-factory/">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn more</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-cbc20c7 elementor-section-boxed elementor-section-height-default elementor-section-height-default elementor-invisible" data-id="cbc20c7" data-element_type="section" data-settings="{"animation":"fadeInUp"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5203faa0" data-id="5203faa0" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4ed2af92 elementor-widget elementor-widget-heading" data-id="4ed2af92" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Liquidity Pools</h5> </div>
</div>
<div class="elementor-element elementor-element-38d97647 elementor-widget elementor-widget-text-editor" data-id="38d97647" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Instead of traditional markets of buyers and sellers, many decentralized finance (DeFi) platforms use automated market makers (AMMs), which allow digital assets to be traded in an automatic and permissionless manner through the use of liquidity pools.</p> </div>
</div>
<div class="elementor-element elementor-element-11c5f1e3 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="11c5f1e3" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docs.bitshares.build/docs/functions-and-features/liquidity-pools">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn more</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5d9c02f1" data-id="5d9c02f1" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-45667a0c elementor-widget elementor-widget-heading" data-id="45667a0c" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">DeFi</h5> </div>
</div>
<div class="elementor-element elementor-element-e38116d elementor-widget elementor-widget-text-editor" data-id="e38116d" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>DeFi cryptocurrencies are fully collateralized, and the issuer only needs to be trusted to appoint an honest set of independent (non-collusive) feed producers. Unlike deposit receipts, the value of a Privatized SmartCoin is secured even if the issuer disappears.</p> </div>
</div>
<div class="elementor-element elementor-element-4d913d83 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="4d913d83" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docs.bitshares.build/docs/functions-and-features/tokens-factory/">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn more</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-33521065" data-id="33521065" data-element_type="column" data-settings="{"background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5093306b elementor-widget elementor-widget-heading" data-id="5093306b" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Pegged Assets</h5> </div>
</div>
<div class="elementor-element elementor-element-43c1cad7 elementor-widget elementor-widget-text-editor" data-id="43c1cad7" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>The benefit of price-stable cryptocurrencies is that they are fully collateralized, and the issuer only needs to be trusted to appoint an honest set of independent (non-collusive) feed producers. Unlike deposit receipts, the value of a Privatized Smart Assets is secured.</p> </div>
</div>
<div class="elementor-element elementor-element-64e66891 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="64e66891" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://docs.bitshares.build/docs/functions-and-features/market-pegged-asset">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Learn more</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-13d250c8 elementor-widget elementor-widget-spacer" data-id="13d250c8" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2631eed1 elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="2631eed1" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-4212815d elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="4212815d" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-34970f6a" data-id="34970f6a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-63cc1651 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="63cc1651" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-adf2abb elementor-invisible" data-id="adf2abb" data-element_type="column" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-51cb652a elementor-widget elementor-widget-heading" data-id="51cb652a" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">WHITE LABEL WEB CLIENT</h3> </div>
</div>
<div class="elementor-element elementor-element-769e68e elementor-widget elementor-widget-text-editor" data-id="769e68e" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Open Source web client of BitShares Blockchain which connects to BitShares Blockchain nodes (bitshares-core).</p>
<p>This reference wallet is a browser-based wallet. Your keys are stored locally in your browser and never leave it as transactions are signed locally before broadcasting them.</p> </div>
</div>
<div class="elementor-element elementor-element-45ab6a76 elementor-widget elementor-widget-spacer" data-id="45ab6a76" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2a68adb2 elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="2a68adb2" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://github.com/bitshares/bitshares-ui">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">SOURCE CODE</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-edcd5f1 elementor-widget__width-auto elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="edcd5f1" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-shrink" href="https://bts.exchange">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon">
<i aria-hidden="true" class="fas fa-play"></i> </span>
<span class="elementor-button-text">WEB CLIENT</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-563c6f8a elementor-invisible" data-id="563c6f8a" data-element_type="column" data-settings="{"animation":"fadeInRight"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-519d4de7 elementor-widget elementor-widget-image" data-id="519d4de7" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="800" height="367" src="./images/2023-03-bitsharesorg-1024x470.png" class="attachment-large size-large wp-image-371" alt="" srcset="./images/2023-03-bitsharesorg-1024x470.png 1024w, ./images/2023-03-bitsharesorg-300x138.png 300w, ./images/2023-03-bitsharesorg-768x353.png 768w, ./images/2023-03-bitsharesorg-1536x705.png 1536w, ./images/2023-03-bitsharesorg.png 1914w" sizes="(max-width: 800px) 100vw, 800px"> </div>
</div>
<div class="elementor-element elementor-element-d69b04e elementor-widget elementor-widget-image" data-id="d69b04e" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="800" height="365" src="./images/2023-03-bitsharesorg2-1024x467.png" class="attachment-large size-large wp-image-372" alt="" srcset="./images/2023-03-bitsharesorg2-1024x467.png 1024w, ./images/2023-03-bitsharesorg2-300x137.png 300w, ./images/2023-03-bitsharesorg2-768x350.png 768w, ./images/2023-03-bitsharesorg2-1536x700.png 1536w, ./images/2023-03-bitsharesorg2.png 1920w" sizes="(max-width: 800px) 100vw, 800px"> </div>
</div>
<div class="elementor-element elementor-element-38f57b3b elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="38f57b3b" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-1489e0e8 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="1489e0e8" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-441de883" data-id="441de883" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-3b5eaa41 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="3b5eaa41" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-107b2469 elementor-invisible" data-id="107b2469" data-element_type="column" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f882767 elementor-widget elementor-widget-image" data-id="f882767" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="751" height="559" src="./images/2023-03-m7.png" class="attachment-full size-full wp-image-364" alt="" srcset="./images/2023-03-m7.png 751w, ./images/2023-03-m7-300x223.png 300w" sizes="(max-width: 751px) 100vw, 751px"> </div>
</div>
<div class="elementor-element elementor-element-34771630 elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="34771630" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="551" height="551" src="./images/2023-03-Element1.png" class="attachment-large size-large wp-image-15" alt="" srcset="./images/2023-03-Element1.png 551w, ./images/2023-03-Element1-300x300.png 300w, ./images/2023-03-Element1-150x150.png 150w" sizes="(max-width: 551px) 100vw, 551px"> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-6bb65e79 elementor-invisible" data-id="6bb65e79" data-element_type="column" data-settings="{"animation":"fadeInRight"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-63715ca9 elementor-widget elementor-widget-heading" data-id="63715ca9" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h3 class="elementor-heading-title elementor-size-default">WHITE LABEL MOBILE APP</h3> </div>
</div>
<div class="elementor-element elementor-element-1b0435c7 elementor-widget__width-auto elementor-absolute elementor-hidden-mobile elementor-widget elementor-widget-image" data-id="1b0435c7" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img loading="lazy" decoding="async" width="416" height="416" src="./images/2023-03-Element2.png" class="attachment-large size-large wp-image-20" alt="" srcset="./images/2023-03-Element2.png 416w, ./images/2023-03-Element2-300x300.png 300w, ./images/2023-03-Element2-150x150.png 150w" sizes="(max-width: 416px) 100vw, 416px"> </div>
</div>
<div class="elementor-element elementor-element-5135d955 elementor-widget elementor-widget-text-editor" data-id="5135d955" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Open Source Mobile App which connects to BitShares Blockchain nodes (bitshares-core).</p>
<p>Currently features:</p>
<ul>
<li>Support account mode and wallet mode registration</li>
<li>Support wallet mode, account mode and private key mode login</li>
<li>Support for all asset views and transactions</li>
<li>Markets, TimeLine, K-Line Chart, Transaction History</li>
<li>Collateral, Transfer, Voting</li>
<li>Automated Market Making & Liquidity Pools</li>
</ul> </div>
</div>
<div class="elementor-element elementor-element-921160f elementor-widget__width-auto elementor-mobile-align-justify elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="921160f" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm" href="https://github.com/bitshares/bitshares-mobile-app">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">SOURCE CODE</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-3f2c046 elementor-widget__width-auto elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="3f2c046" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-shrink" href="https://app.btspp.io">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon">
<i aria-hidden="true" class="fas fa-play"></i> </span>
<span class="elementor-button-text">iOS</span>
</span>
</a>
</div>
</div>
</div>
<div class="elementor-element elementor-element-6736d4b elementor-widget__width-auto elementor-mobile-align-center elementor-widget-mobile__width-inherit elementor-widget elementor-widget-button" data-id="6736d4b" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a class="elementor-button elementor-button-link elementor-size-sm elementor-animation-shrink" href="https://play.google.com/store/apps/details?id=org.bitshares.app">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon">
<i aria-hidden="true" class="fas fa-play"></i> </span>
<span class="elementor-button-text">Android</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-561832b2 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="561832b2" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2f91974a" data-id="2f91974a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-39d91f28 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="39d91f28" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-54f80d07" data-id="54f80d07" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-755f3909 elementor-widget elementor-widget-heading" data-id="755f3909" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Roadmap 2023</h2> </div>
</div>
</div>
</div>
</div>
</section>
<div class="elementor-element elementor-element-28ada4b3 elementor-widget elementor-widget-spacer" data-id="28ada4b3" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-7747cc0e elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7747cc0e" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1df184bc elementor-invisible" data-id="1df184bc" data-element_type="column" data-settings="{"background_background":"classic","animation":"fadeInLeft"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-70292ad8 elementor-star-rating-mobile--align-center elementor-widget-mobile__width-inherit elementor--star-style-star_fontawesome elementor-widget elementor-widget-star-rating" data-id="70292ad8" data-element_type="widget" data-widget_type="star-rating.default">
<div class="elementor-widget-container">
<div class="elementor-star-rating__wrapper">
<div class="elementor-star-rating__title">Q1</div>
<div class="elementor-star-rating" itemtype="http://schema.org/Rating" itemscope="" itemprop="reviewRating">
<i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i><i class="elementor-star-full" aria-hidden="true"></i> <span itemprop="ratingValue" class="elementor-screen-only">Rated 10 out of 10</span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-655669c5 elementor-widget elementor-widget-heading" data-id="655669c5" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-default">Updating Information</h5> </div>
</div>
<div class="elementor-element elementor-element-1170f935 elementor-widget elementor-widget-text-editor" data-id="1170f935" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<ul>
<li>Updating information at <a href="https://coinmarketcap.com/currencies/bitshares/">coinmarketcap.com</a>
</li>
<li>Updating information at <a href="https://www.forbes.com/digital-assets/assets/bitshares-bts">forbes.com</a>
</li>
<li>Updating information at <a href="https://finance.yahoo.com/quote/BTS-USD/?p=BTS-USD">Yahoo.com</a>
</li>
<li>Updating information at <a href="https://coinpaprika.com/coin/bts-bitshares/">coinpaprika.com</a>
</li>
<li>Addressing BitShares at <a href="https://blockster.com/exploring-the-advantages-of-bitshares-blockchain-over-other-platforms">blockster.com</a>
</li>
</ul> </div>
</div>
</div>
</div>