-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2367 lines (2246 loc) · 153 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="p:domain_verify" content="1272496fbe51c2676bb3e42d05d3ae13" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="BBSCoin [BBS] is a cryptocurrency for exchanging virtual credits from forums and websites /">
<meta name="author" content="BBSCoin">
<meta name="keywords" content="BBSCoin,coin,cryptocurrency" />
<title>BBSCoin - a cryptocurrency for exchanging virtual credits from forums and websites</title>
<!-- base href="/" / -->
<link href="vendor/bootstrap/css/bootstrap-20cols.css" rel="stylesheet">
<link href="vendor/alojare/css/alojare.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet">
<!-- link href="css/fontawesome.min.js" rel="stylesheet" -->
<link href="css/creative.min.css" rel="stylesheet">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@bbs_coin">
<meta name="twitter:creator" content="@DjemGuerreru">
<meta name="twitter:title" content="BBS is a cryptocurrency for exchanging virtual credits from forums and websites | BBSCoin">
<meta name="twitter:description" content="BBSCoin [BBS] is a cryptocurrency for exchanging virtual credits from forums and websites">
<meta name="twitter:image" content="https://bbscoin.click/img/logos/bbscoin.png">
<meta property="twitter:url" content="https://bbscoin.click" />
<meta property="twitter:title" content="BBS is a cryptocurrency for exchanging virtual credits from forums and websites | BBSCoin /" />
<meta property="twitter:description" content="BBSCoin [BBS] is a cryptocurrency for exchanging virtual credits from forums and websites /" />
<meta property="twitter:image" content="https://bbscoin.click/img/logos/bbscoin.png" />
<link rel="canonical" href="https://bbscoin.click/" />
<link rel="alternate" hrefLang="ar" href="https://www.bbscoin.click/ar" />
<link rel="alternate" hrefLang="en" href="https://www.bbscoin.click/en" />
<link rel="alternate" hrefLang="es" href="https://www.bbscoin.click/es" />
<link rel="alternate" hrefLang="id" href="https://www.bbscoin.click/id" />
<link rel="alternate" hrefLang="ja" href="https://www.bbscoin.click/ja" />
<link rel="alternate" hrefLang="ko" href="https://www.bbscoin.click/ko" />
<link rel="alternate" hrefLang="pt-br" href="https://www.bbscoin.click/pt" />
<link rel="alternate" hrefLang="ru" href="https://www.bbscoin.click/ru" />
<link rel="alternate" hrefLang="vi" href="https://www.bbscoin.click/vi" />
<link rel="alternate" hrefLang="zh" href="https://www.bbscoin.click/zh" />
<link rel="alternate" hrefLang="zh-tw" href="https://www.bbscoin.click/zh" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bbscoin.click/" />
<meta property="og:title" content="BBSCoin (BBS) official website, insights and downloads / | BBSCoin" />
<meta name="description" content="BBSCoin [BBS] is a cryptocurrency for exchanging virtual credits from forums and websites /" />
<meta property="og:description" content="BBSCoin [BBS] is a cryptocurrency for exchanging virtual credits from forums and websites /" />
<meta property="og:image" content="https://www.bbscoin.click/img/logos/bbscoin.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="256" />
<meta property="og:image:height" content="256" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "BBSCoin",
"image": "https://www.bbscoin.click/img/logos/bbscoin.png",
"mainEntity": {
"@type": "ItemList",
"name": "Exchange Listings",
"itemListElement": [
{
"@type": "ExchangeRateSpecification",
"currency": "BBS",
"name": "BBSCoin",
"identifier": "Blockchain",
"description": "TradeOgre",
"disambiguatingDescription": 182194000,
"url": "https://tradeogre.com/exchange/LTC-BBS",
"currentExchangeRate": {
"@type": "UnitPriceSpecification",
"price": "0.00000002",
"priceCurrency": "LTC"
},
"exchangeRateSpread": {
"@type": "MonetaryAmount",
"maxValue": "0.00000003",
"minValue": "0.00000001",
"currency": "LTC"
}
},
{
"@type": "ExchangeRateSpecification",
"currency": "BBS",
"name": "BBSCoin",
"identifier": "Blockchain",
"mainEntityOfPage": "https://bbscoin.click",
"description": "Crex24",
"disambiguatingDescription": 264516000,
"url": "https://crex24.com/exchange/BBS-BTC",
"currentExchangeRate": {
"@type": "UnitPriceSpecification",
"price": 0.00000000006,
"priceCurrency": "BTC"
},
"exchangeRateSpread": {
"@type": "MonetaryAmount",
"maxValue": 0.00000000007,
"minValue": 0.00000000005,
"currency": "LTC"
}
},
{
"@type": "ExchangeRateSpecification",
"currency": "BBST",
"name": "BBSToken",
"identifier": "TRC10|1003413",
"mainEntityOfPage": "https://bbscoin.click",
"description": "Bololex",
"disambiguatingDescription": 264516000,
"url": "https://bololex.com/trading?symbol=BBST-TRX",
"currentExchangeRate": {
"@type": "UnitPriceSpecification",
"price": 0.00003093,
"priceCurrency": "TRX"
},
"exchangeRateSpread": {
"@type": "MonetaryAmount",
"maxValue": 0.00004786,
"minValue": 0.00001400,
"currency": "TRX"
}
},
{
"@type": "ExchangeRateSpecification",
"currency": "WBST",
"name": "Wrapped BBSToken",
"identifier": "TRC20|TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB",
"mainEntityOfPage": "https://bbscoin.click",
"description": "JustSwap",
"disambiguatingDescription": "182234",
"url": "https://sunswap.com/#/scanold/detail/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB",
"currentExchangeRate": {
"@type": "UnitPriceSpecification",
"price": 0.000021,
"priceCurrency": "TRX"
},
"exchangeRateSpread": {
"@type": "MonetaryAmount",
"maxValue": 0.000022,
"minValue": 0.000020,
"currency": "TRX"
}
}
]
}
}
</script>
<link href="img/logos/favicon.ico" rel="shortcut icon">
<link rel="manifest" href="/manifest.json" />
</head>
<body id="page-top" class="bg-dark">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container nav nav-tabs" id="nav-tab" role="tablist">
<a class="navbar-brand nav-link text-shadow active bg-dark-50" id="nav-index-tab" data-toggle="tab" href="#nav-index" role="tab" aria-controls="nav-index" aria-selected="true" title="BBSCoin Home"><img width="30px" src="img/logos/bbscoin.png" alt="BBSCoin Home" title="BBSCoin Home"> BBSCoin</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<!-- li class="nav-item">
<a class="nav-link" href="https://bbstoken.click/" role="tab" aria-controls="nav-token" aria-selected="false" target="_blank"><div id="navi_bbstoken">BBS TOKEN</div></a>
</li --->
<li class="nav-item px-1">
<a class="nav-link bg-dark-50" id="nav-token-tab" data-toggle="tab" href="#nav-token" role="tab" aria-controls="nav-token" aria-selected="false"><div id="navi_bbstoken">BBSToken</div></a>
</li>
<li class="nav-item px-1">
<a class="nav-link bg-dark-50" id="nav-insight-tab" data-toggle="tab" href="#nav-insight" role="tab" aria-controls="nav-insight" aria-selected="false"><div id="navi_statistics">Insight</div></a>
</li>
<li class="nav-item px-1"><!-- js-scroll-trigger -->
<a class="nav-link bg-dark-50" id="nav-roadmap-tab" data-toggle="tab" href="#nav-roadmap" role="tab" aria-controls="nav-roadmap" aria-selected="false"><div id="navi_roadmap">Roadmap</div></a>
</li>
<li class="nav-item px-1">
<a class="nav-link bg-dark-50" id="nav-ecosystem-tab" data-toggle="tab" href="#nav-ecosystem" role="tab" aria-controls="nav-ecosystem" aria-selected="false"><div id="navi_ecosystem">Ecosystem</div></a>
</li>
<li class="nav-item px-1">
<a class="nav-link bg-dark-50" id="nav-download-tab" data-toggle="tab" href="#nav-download" role="tab" aria-controls="nav-download" aria-selected="false"><div id="navi_download">Download</div></a>
</li>
<li class="nav-item px-1">
<a class="nav-link bg-dark-50" id="nav-follow-tab" data-toggle="tab" href="#nav-follow" role="tab" aria-controls="nav-follow" aria-selected="false"><div id="navi_followus">Follow Us</div></a>
</li>
<li class="nav-item dropdown bg-dark-50">
<a class="nav-link d-none" href="https://www.bbscoin.click/#globeselect"></a>
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" aria-controls="nav-languages" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i title="Languages" class="fas fa-globe"></i> <i title="Languages" class="fas fa-language"></i>
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-menu-lg-left" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#lang-en" lang="en" hreflang="en" onclick="translator('en', 1);">English</a>
<a class="dropdown-item" href="#lang-es" lang="es" hreflang="es" onclick="translator('es', 1);">Español</a>
<a class="dropdown-item" href="#lang-pt-br" lang="pt-br" hreflang="pt-br" onclick="translator('pt', 1);">Português Brasileiro</a>
<a class="dropdown-item" href="#lang-ko" lang="ko" hreflang="ko" onclick="translator('ko', 1);">한국어</a>
<a class="dropdown-item" href="#lang-zh" lang="zh" hreflang="zh" onclick="translator('zh', 1);">中文(简体)</a>
<a class="dropdown-item" href="#lang-ja" lang="ja" hreflang="ja" onclick="translator('ja', 1);">日本語</a>
<a class="dropdown-item" href="#lang-id" lang="id" hreflang="id" onclick="translator('id', 1);">Indonesian</a>
<a class="dropdown-item" href="#lang-vi" lang="vi" hreflang="vi" onclick="translator('vi', 1);">Tiếng Việt</a>
<a class="dropdown-item" href="#lang-ru" lang="ru" hreflang="ru" onclick="translator('ru', 1);">Pусский</a>
<a class="dropdown-item" href="#lang-ar" lang="ar" hreflang="ar" onclick="translator('ar', 1);">عربى</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active p-0" id="nav-index" role="tabpanel" aria-labelledby="nav-index-tab">
<header class="masthead text-center text-white d-flex" style="background-image:url('img/cryptunit/Desktop/bbs-6.jpg');background-repeat:no-repeat;background-size:cover;background-position:center;">
<div class="container">
<div class="row col-20">
<div class="vh-65 col-20">
<div class="vh-35">
</div>
<p class="d-none"><img class="mt-md-1" width="175px" src="img/logos/bbscoin.png" alt="BBSCoin" title="BBSCoin"></p>
<h1 id="home_desc" class="text-uppercase text-shadow">
<strong>Cryptocurrency created for exchanging points from bulletin board systems</strong>
</h1>
<noscript>Notice: JavaScript is disabled. 자바스크립트가 비활성화되었습니다. JavaScript está desactivado. JavaScript отключен. JavaScript 被禁用。JavaScriptが無効になっています。JavaScript bị tắt. جافا سكريبت Javascript معطلة.</noscript>
<hr>
</div>
<div class="mx-auto vh-20">
<p id="home_desc_below" class="text-faded mt-4 text-shadow"><b>Opening the door to user's loyalty on forums and websites.</b></Opening></p>
<p><a id="home_more_btn" class="btn btn-light btn-xl text-shadow" href="#about">Learn More</a></p>
</div>
</div>
</div>
</header>
<section class="vh-md-50" id="about" style="background-color:#3083be;">
<div class="container">
<div class="row">
<div class="col-md-18 mx-auto text-center">
<h2 id="home_about_title" class="section-heading text-white text-shadow font-weight-bold">BBSCoin uses CryptoNote technologies to keep transactions and balances secure, helping drive your website successfully.</h2>
<hr class="light my-5">
<p id="home_about_desc" class="text-faded mb-4">Whether it is the virtual money gained in the forums, points you collected on websites or karmas given by your coworkers. BBSCoin provides a bridge for it to the greater the world.</p>
<div class="card m-3 py-3">
<a class="nav-link" id="nav-download-tab" data-toggle="tab" href="#nav-download" role="tab" aria-controls="nav-download" aria-selected="false">
<p id="home_plugins">As BBSCoin is designed for exchanging virtual credits, plugins are available for the following software:</p>
<div class="row justify-content-center p-3">
<div class="col-6 col-md-3 pt-4"><img class="col-20" src="/img/logos/discuz.png"></div>
<div class="col-6 col-md-3 pt-4"><img class="col-20" src="/img/logos/gnuboard.png"></div>
<div class="col-6 col-md-3 pt-4"><img class="col-20" src="/img/logos/mybb.png"></div>
<div class="col-6 col-md-3 pt-4"><img class="col-20" src="/img/logos/phpwind.png"></div>
<div class="col-6 col-md-3 text-center text-dark"><img class="col-20" src="/img/logos/smf.png"><BR><b class="d-none d-md-block">(SMF)</b></div>
<div class="col-6 col-md-3 pt-4 text-center text-dark"><img class="col-20" src="/img/logos/buddypress.png"><BR><b class="d-none d-md-block">Planned/Soon!</b></div>
</div>
<p id="home_plugins_download">* Plugins may be acquired from our [ DOWNLOAD ] tab.</p>
</a>
</div>
<hr class="light my-5">
<div class="card m-3 py-3">
<div class="row col-20">
<div class="col-md-4">
<a class="nav-link" id="nav-token-tab" data-toggle="tab" href="#nav-token" role="tab" aria-controls="nav-token" aria-selected="false"><img src="img/tron-logo-w-words-min.png" class="col-20 align-left" title="Tron (TRX) Blockchain"></a>
</div>
<div class="col-md-16 text-left">
<p id="home_about_bbst" class="text-dark mb-4">BBSCoin is on the Tron network as BBSToken (BBST), which is a opening bridge between BBSCoin and the Tron network and it's token ecosystem. Note: BBSToken is a platform service of BBSCoin, it is NOT a swap.</p>
<p id="home_about_bbst_more" class="text-dark mb-4">Token was issued on October 15, 2020. An amount of 120 Billion BBST was kept frozen, and currently the amount of 64.470 Billion BBST is available for circulation.</p>
</div>
</div>
</div>
</div>
<div class="container text-center my-5 text-white text-shadow d-none">
<h2 id="learn_more_btn" class="mb-4 text-shadow font-weight-bold">WANT TO LEARN MORE?</h2>
<div class="row justify-content-center">
<a class="btn btn-light btn-xl sr-button m-5 border text-shadow text-dark nav-link" id="nav-insight-tab" data-toggle="tab" href="#nav-insight" role="tab" aria-controls="nav-insight" aria-selected="false"><div id="navi_statistics">Insights</div></a>
<a class="btn btn-light btn-xl sr-button m-5 border text-shadow text-dark nav-link" id="nav-roadmap-tab" data-toggle="tab" href="#nav-roadmap" role="tab" aria-controls="nav-roadmap" aria-selected="false"><div id="navi_roadmap">Roadmap</div></a>
<a class="btn btn-light btn-xl sr-button m-5 border text-shadow text-dark nav-link" id="nav-ecosystem-tab" data-toggle="tab" href="#nav-ecosystem" role="tab" aria-controls="nav-ecosystem" aria-selected="false"><div id="navi_ecosystem">Ecosystem</div></a>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="tab-pane p-0" id="nav-token" role="tabpanel" aria-labelledby="nav-token-tab">
<section class="py-5">
<div class="container">
<div class="pt-3">
<div class="card alert alert-white mt-4 py-5 mx-4">
<div class="row justify-content-center">
<div class="col-md-6 py-5 justify-content-center">
<img class="col-20" src="/img/bbstoken.png" alt="Bololex.com" title="Bololex.com">
</div>
<div class="col-md-10" role="alert">
<p id="bbst"><b>BBSToken</b> is BBSCoin on the Tron blockchain. BBSCoin is a cryptocurrency designed for
exchanging virtual credits on websites and forums. BBSToken allows BBSCoin holders a bridge
to the Tron network by swap-freezing BBSCoin for BBSToken.</p>
<p id="bbst_more">BBSToken, while on a Tronlink wallet, gives the user portability to take them anywhere
without a computer and the mobility to transfer their BBSTokens at any time from any
location from where they can access the internet.</p>
<p>[ <a href="https://bbstoken.click/wp/BBSToken_Swap-Freeze_Platform_v1.0.0.pdf" target="_blank"><i class="fas fa-clipboard"></i> Whitepaper</a> ] [ <a href="https://www.bbstoken.click/" target="_blank"><i class="fas fa-tablet-alt"></i> Platform / DApp</a> ]</p>
</div>
</div>
</div>
<div class="card alert alert-white mt-5 pt-4 mx-4">
<div class="row justify-content-center">
<div class="col-md-6 py-3 justify-content-center">
<a href="https://bololex.com/currency/info/BBST" target="_blank"><img class="col-20"
src="/img/bololex-bg-white.jpg" alt="BBSToken on Bololex.com"
title="BBSToken on Bololex.com"></a>
</div>
<div class="col-md-10" role="alert">
<p id="bbst_bololex"><b>BBSToken (<i>BBST</i>)</b> is listed on the Bololex Exchange. An airdrop of 110 Million
BBST was completed after a successful listing. Thanks to all who supported the BBSToken
listing on Bololex.</p>
<p>Bololex [ BBST-TRX ] <a href="https://bololex.com/trading?symbol=BBST-TRX"
target="_blank">https://bololex.com/trading?symbol=BBST-TRX</a></p>
<p>Bololex [ BBST-USDT ] <a href="https://bololex.com/trading?symbol=BBST-USDT"
target="_blank">https://bololex.com/trading?symbol=BBST-USDT</a></p>
</div>
</div>
</div>
<div class="card alert alert-white mt-5 pt-4 mx-4">
<div class="row justify-content-center">
<div class="col-md-6 py-3 justify-content-center">
<a href="https://sunswap.com/#/scanold/detail/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB"
target="_blank"><img class="col-20" src="/img/justswap_logo.svg"
alt="Wrapped BBSToken on JustSwap.io" title="Wrapped BBSToken on JustSwap.io"></a>
</div>
<div class="col-md-10" role="alert">
<p id="bbst_justswap"><b>Wrapped BBSToken(<i>WBBS</i>)</b> may be swapped on the JustSwap DEX. It is a
decentralized exchange from the Tron Foundation which works by the use of blockchain
contracts, this way the blockchain itself holds the tokens vs an exchange wallet.</p>
<p>JustSwap.io [ WBBS-TRX ] <a
href="https://sunswap.com/#/scanold/detail/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB"
target="_blank">https://sunswap.com/#/scanold/detail/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB</a>
</p>
<p id="bbst_justswap_more">The main exchange pair is TRX, but WBBS may be exchanged for any other asset that is on the JustSwap DEX like: USDT, WBTT, WBTC, etc.</p>
</div>
</div>
</div>
<div class="col-20 px-4 py-4">
<div id="bbstoken" class="card border-info my-3">
<div class="card-header"><b>BBSCoin <=> BBSToken (BBST)</b></div>
<div class="card-body text-secondary p-2">
<div class="alert alert-info" role="alert">
<h5 class="alert-heading"><img class="col-1" src="/img/bbstokenSQ.png"
alt="BBSToken (BBST)" title="BBSToken (BBST)">BBSToken (BBST)</h5>
<p id="bbst_convert_bbst_1" class="card-text">Bridging the BBSCoin community into the Tron network. BBSCoin holders
will be able to swap-freeze coins for tokens, allowing them to reach more exchange
markets beyond the usual Bitcoin and Litecoin markets that come with higher exchange
requirements and fees. Unspent BBSTokens may be returned to unlock from the Frozen
BBSCoins which may be withdrawn.</p>
<p id="bbst_convert_bbst_2" class="card-text"> The BBSToken (BBST) was recorded as a TRC-10 token on the Tron
Blockchain on: <i>2020-10-14 18:15:18 (UTC)</i><br>Token link on TronScan: <a
href="https://tronscan.org/#/token/1003413"
target="_blank">https://tronscan.org/#/token/1003413</a><br> <a
href="https://www.bbscoin.click" target="_blank">BBSCoin</a> was created on
2018-01-17 as a cryptonote coin that is PoW mineable in Cryptonight Lite v7. </p>
<p id="bbst_convert_bbst_3" class="card-text">The current unlocked supply of BBSToken (BBST) is 64.47 Billion
BBSToken (BBST). Full supply is 184.47 Billion, the remainder 120 Billion are
frozen/locked on the blockchain and will only be unlocked if circulation is needed.
There are about <a href="https://www.bbscoin.click/statistics/" target="_blank">105.12
Billion BBSCoins</a> minted/circulating by mining and it will take about 2 more
years of mining to reach 120 Billion since the mining reward reduces every day.</p>
</div>
<div class="alert alert-info" role="alert">
<h5 class="alert-heading"><img class="col-1" src="/img/wrappedbbstokenSQ.png"
alt="Wrapped BBSToken (BBST)" title="Wrapped BBSToken (BBST)">Wrapped BBSToken
(WBBS)</h5>
<p id="bbst_convert_wbbs_1" class="card-text">
Wrapped BBSToken (WBBS) is an additional swap of BBSToken into a TRC-20 token, which may
be used on the <a
href="https://sunswap.com/#/scanold/detail/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB"
target="_new">JustSwap DEX</a> or any other DEX that may support TRC-20 tokens. You
must use the DApp Browser or Discover inside Tronlink to open the website and connect
Tronlink and use our DApp to swap BBST for WBBS (1:1), just find the [ Swap ] tab.
</p>
<p id="bbst_convert_wbbs_2" class="card-text"> The Wrapped BBSToken (WBBS) was recorded as a TRC-20 token on the Tron
Blockchain on: <i>2020-10-15 22:39:53 (UTC)</i><br>Token link on TronScan: <a
href="https://tronscan.org/#/token20/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB"
target="_blank">https://tronscan.org/#/token20/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB</a>
</p>
</div>
<div class="alert alert-warning" role="alert">
<p id="bbst_convert_notice" class="card-text"> <b>NOTICE:</b> When interacting with BBSTokens, please make sure you
interact with the ones matching the IDs mentioned above (Token ID: 103413 and Contract:
TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB). If you were to find other BBSTokens on the Tron
Network, please let us know by Joining our Telegram group: @bbstoken (link: <a
href="https://t.me/bbstoken" target="_blank">https://t.me/bbstoken</a>) </p>
</div>
</div>
</div>
<div id="roadmap" class="card border-info my-4">
<div class="card-header"><b>Road Map</b></div>
<div class="card-body text-secondary p-2">
<div class="alert alert-info" role="alert">
<div class="row">
<div class="col-md-15">
<h5 id="bbst_rm_plugins_h" class="alert-heading">Forum Websites Plugins/Addons</h5>
<p id="bbst_rm_plugins_1" class="card-text">Updates to the plugins are expected to happen and completed
within 3 months(End of April 2021).</p>
<p id="bbst_rm_plugins_2" class="card-text">
BBSToken to be integrated into the plugins along with API documentation. New
addons will be created to cover other popular platforms used for forums and
websites.
</p>
</div>
</div>
<hr>
<p id="bbst_rm_plugins_3" class="mb-0">Plugins/Addons: Current versions are only for <a
href="https://bbscoin.click/ecosystem/#API" target="_blank">BBSCoin</a>, BBST Wallet
Container to be developed.</p>
</div>
<div class="alert alert-info" role="alert">
<div class="row">
<div class="col-md-15">
<h5 id="bbst_rm_walletd_h" class="alert-heading">BBSToken Wallet Container</h5>
<p id="bbst_rm_walletd_1" class="card-text">To complete the Plugins/Addons updates to include BBSToken, a
wallet container for BBSToken must be developed, and will be designed to use the
same commands as the BBSCoin Wallet container (walletd). This way the plugin
will re-use the commands vs creating new ones and save content bytes and
functions are also re-used. Will have to add a mode for running both BBSCoin and
BBSToken, in the case some webmasters would like to do so.</p>
</div>
</div>
<hr>
<p id="bbst_rm_walletd_2" class="mb-0">Status: Under Engineering Design</p>
</div>
<div class="alert alert-info" role="alert">
<div class="row">
<div class="col-md-15">
<h5 id="bbst_rm-platform_h" class="alert-heading">BBSToken Swap-Freeze Platform</h5>
<p id="bbst_rm-platform_1" class="card-text">The swap-freeze platform allows BBS holders to deposit BBSCoin
to be swap-frozen to circulate BBSToken on a 1:1 ratio and be sent to their Tron
wallet address. The BBSCoin will stay swap-frozen on the platform while the user
holds/spends BBSTokens. Any BBSToken may be able to return deposite and withdraw
BBSCoin back to a BBS wallet. When BBSToken is returned, the BBSToken is
uncirculated.</p>
<p id="bbst_rm-platform_2" class="card-text">
[ BBSCoin ] ---> [ Platform ] ---> [ BBSToken ] <b
class="text-success">COMPLETED</b><br>
[ BBSToken ] ---> [ Platform ] ---> [ BBSCoin ] <b class="text-warning">NEXT
FEATURE</b> <i class="text-info">(Under construction and testing.)</i>
</p>
<p id="bbst_rm-platform_3" class="card-text">How will it work?<br>
Create an account on the platform by using the Register link on the top mene and
make sure to insert your token address where asked. The Tron wallet address must
be of an activated one. You will receive a unique BBSCoin address to make
deposits of BBSCoin to it. When deposited, the platform will send you the
equivalent amount(1:1) in BBSToken to your recorded Tron Wallet address when the
BBSCoin transaction is confirmed on the blockchain. When you return BBSTokens,
to the BBSToken main wallet which will appear on the platform, the equivalent
amount of BBSCoin is unlocked and you may withdraw it to a BBSCoin Wallet. The
main wallet uncirculates the tokens automatically.</p>
</div>
<div class="col-md-5 p-1"><img class="col-20 text-left" src="/img/bbstokenLogin.png"
alt="BBSToken Platform Login" title="BBSToken Platform Login"></div>
</div>
<hr>
<p id="bbst_rm-platform_4" class="mb-0">Platform: Go to <a href="https://www.bbstoken.click" target="_blank">BBSToken.click</a>> use the [ Login | Register ] links located on the menu at the top
of page or use the Login with Tronlink button if you have the Tronlink Plugin in your Chrome browser, or open the website "bbstoken.click" inside your Tronlink wallet's Discovery.</p>
</div>
<div class="alert alert-info" role="alert">
<div class="row">
<div class="col-md-5 p-1"><img class="col-20 text-left"
src="/img/bbstokenDAppSwap.png" alt="BBSToken Swap on DApp"
title="BBSToken Swap on DApp">
</div>
<div class="col-md-15">
<h5 class="alert-heading">Wrapped BBSToken (WBBS)</h5>
<p id="bbst_rm_wbbs_1" class="card-text">As you may read on the [ BBSCoin <=> BBSToken (BBST) ] section
above, the BBSToken(BBST) will deposit-freezed into the Wrapped
BBSToken(WBBS) to mint and circulate the WBBS for use in JustSwap or other
DEX that may support TRC-20 tokens. The DApp is hosted on this website, so
that BBST holders may swap in and out for WBBS.
</p>
<p id="bbst_rm_wbbs_2" class="card-text">When you need to swap back WBBS to withdraw BBST, the contract
burns an equivalent amount of WBBS from your wallet, and returns the equivalent
amount of BBST to your wallet.
</p>
<p id="bbst_rm_wbbs_3" class="card-text">
[ BBSToken ]>---<[ DApp ]>---<[ Wrapped BBSToken ] <b class="text-success">
COMPLETED</b>
</p>
<p id="bbst_rm_wbbs_4" class="card-text">There is no set Supply amount of Wrapped BBSTokens, there is
only a matching which is equal to that of BBST deposited into the WBBS contract.
This is why there is minting and burning of WBBS, so it only exists as an equal
amount of deposited BBST and no extras are around.
</p>
<hr>
<p id="bbst_rm_wbbs_5" class="mb-0">Wrapper: Open this website with Tronlink and go to the [ Swap ] tab
after connecting it.
</p>
</div>
</div>
</div>
<div class="alert alert-info" role="alert">
<div class="row">
<div class="col-md-15">
<h5 id="bbst_rm_mining_h" class="alert-heading">BBSCoin Mining</h5>
<p id="bbst_rm_mining_1" class="card-text">The mining pools allows you to acquire BBScoin by helping with
the mining of the blocks that carry new transactions on the blockchain. You may
send mined BBSCoin to your BBSCoin Wallet or direct deposit them to your BBSCoin
wallet address from your BBSToken Swap Platform account and directly receive
BBSToken on your Tron wallet address.</p>
<p id="bbst_rm_mining_2" class="card-text">
[ BBSCoin Pool ] ---> [ Platform ] ---> [ BBSToken ] <b
class="text-success">COMPLETED</b>
</p>
<p id="bbst_rm_mining_3" class="card-text">If you prefer to have the separate BBSCoin wallet, you may
download it from <a href="https://www.bbscoin.click/download/"
target="_blank">bbscoin.click/download</a>. Please make sure to change it to
use the remote node by going to: Settings -> Preferences -> Select: Remote Node,
then enter node.bbscoin.click for host and 21204 for port, then click [ SAVE ],
wait for it to finish saving, then restart the wallet software. Then you may go
to a Mining Pool from the links below and to find the getting started
instructions to follow (mining software download is required).
</div>
<div class="col-md-5 p-1"><img class="col-20 text-left" src="/img/bbscoinMining.png"
alt="BBSCoin Mining Snapshot" title="BBSCoin Mining Snapshot"></div>
</div>
<hr>
<p class="mb-0 d-none d-md-block"><span id="bbst_rm_mining_pools">Mining Pool(s)</span>: [ <a href="https://pool.bbscoin.click"
target="_blank">pool.bbscoin.click</a> ] [ <a
href="https://bbscoin.my-mining-pool.de"
target="_blank">bbscoin.my-mining-pool.de</a> ] [ <a
href="https://webbbs.semipool.com" target="_blank">webbbs.semipool.com</a> ]
[ <a href="https://bbs.soloway.in.ua" target="_blank">bbs.soloway.in.ua</a> ]
[ <a href="https://bbs.gonspool.com" target="_blank">bbs.gonspool.com</a> ]
[ <a href="https://crypton.su/pool/bbs" target="_blank">crypton.su/pool/bbs</a> ]
</p>
<p class="mb-0 d-block d-md-none"><span id="bbst_rm_mining_pools">Mining Pool(s)</span>: <br>
<p class="py-3">[ <a href="https://pool.bbscoin.click" target="_blank">pool.bbscoin.click</a> ]</p>
<p class="py-3">[ <a href="https://bbscoin.my-mining-pool.de" target="_blank">bbscoin.my-mining-pool.de</a> ]</p>
<p class="py-3">[ <a href="https://webbbs.semipool.com" target="_blank">webbbs.semipool.com</a> ]</p>
<p class="py-3">[ <a href="https://bbs.soloway.in.ua" target="_blank">bbs.soloway.in.ua</a> ]</p>
<p class="py-3">[ <a href="https://bbs.gonspool.com" target="_blank">bbs.gonspool.com</a> ]</p>
<p class="py-3">[ <a href="https://crypton.su/pool/bbs" target="_blank">crypton.su/pool/bbs</a> ]</p>
</p>
</div>
<div class="alert alert-info" role="alert">
<h5 id="bbst_exchanges_h" class="alert-heading">Exchanges</h5>
<p id="bbst_exchanges_1" class="card-text">Below are the current listings of BBSToken, Wrapped BBSToken, and
BBSCoin. We are pusuing other exchanges, and hope to add them to the list.</p>
<p class="card-text">
<div class="row justify-content-center">
<div class="col-md-6 border bg-white py-3">
<b class="text-dark">BBSToken (BBST)</b><br>
Bololex [ <a href="https://bololex.com/trading?symbol=BBST-TRX"
target="_blank">TRX</a> ] [ <a href="https://bololex.com/trading?symbol=BBST-USDT"
target="_blank">USDT</a> ] <br>
</div>
<div class="col-md-6 border bg-white mx-md-3">
<b class="text-dark">Wrapped BBSToken (WBBS)</b><br>
JustSwap [ <a
href="https://sunswap.com/#/scanold/detail/TB3CjdHfkraU7MJLSQESYPY4U2CMKXi3LB"
target="_blank">TRX</a> ]
</div>
<div class="col-md-6 border bg-white">
<b class="text-dark">BBSCoin (BBS)</b><br>
Crex24 [ <a href="https://crex24.com/exchange/BBS-BTC"
target="_blank">BTC</a> ]<br>
TradeOgre [ <a href="https://tradeogre.com/exchange/BTC-BBS"
target="_blank">BTC</a> ] [ <a
href="https://tradeogre.com/exchange/LTC-BBS" target="_blank">LTC</a> ]
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div class="tab-pane hide p-0" id="nav-insight" role="tabpanel" aria-labelledby="nav-insight-tab">
<section class="bg-primary" id="ecosystem" style="background-image:url('img/cryptunit/bbs-7.jpg');background-repeat:no-repeat;background-size:cover;background-position:top;">
<div class="container">
<div class="row justify-content-center">
<div class="mx-auto text-center">
<h1 id="statistics_title" class="section-heading text-white text-shadow font-weight-bold">BBSCoin Insights & Statistics</h1>
<hr class="light mt-5 mb-0">
</div>
</div>
</div>
</section>
<section id="miningstats" style="background-image:url('img/cryptunit/bbs-6.jpg');background-repeat:no-repeat;background-size:cover;background-position:top;">
<div class="container">
<div class="row col-20 justify-content-center">
<div class="text-center text-white text-shadow">
<h2 id="what_is_bbs" class="font-weight-bold">About BBS coin</h2>
<hr class="my-4">
<p class='pb-4 text-left'><img src="img/logos/bbscoin.png" class="float-left pr-3"
style="width:120px;">
<div id="what_is_bbs_intro">BBS coin is a cryptocurrency with it's own blockchain for transactions,
that allows webmasters to offer BBS coins as a point exchange/swap perk on their websites or
forums for their members. Members who opt-in can then exchange their BBS coins with other
members or withdraw to their own BBS wallet for holding(also known as hodl) or may send it to
their account's BBS address on one of the Exchanges where BBS coin is listed on to exchange for
other cryptocurrencies like BitCoin(BTC) and LiteCoin(LTC). We use Cryptonight Lite v7 as the
algorithm for the software.</div>
</p>
<p id="what_is_bbs_content" class='pb-4 text-left'>Because BBS is a coin then it makes it mineable,
meaning you could share your computing power with a BBS mining pool(see under ECOSYSTEM) to help
find new blocks on the blockchain which holds the records of newly created transactions and help
confirm them by verifying the balance of the senders of the transactions with previous blocks. You
will get a share of the reward for helping find the next block (Check the current 'Reward' under the
next section).</p>
</div>
</div>
</div>
</section>
<section id="technology" style="background-image:url('img/cryptunit/Desktop/bbs-8.jpg');background-repeat:no-repeat;background-size:cover;background-position:center;">
<div class="container">
<div class="row">
<div class="col-20 text-center">
<h2 id="navi_technology" class="section-heading font-weight-bold text-white text-shadow">Technology</h2>
<hr class="my-4">
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-9 card m-3 p-1 py-5">
<div class="service-box mx-auto text-center">
<div style="color:#f05f40;font-size:90px;">
<i class="fas fa-desktop"></i><br />
<h3 id="algo" class="mb-3">Cryptonight Lite v7</h3>
</div>
<div class="py-2 border-top">
<p id="algo_desc" class="text-muted">We made the coin easy to mine, so anyone can share a part.
</p>
</div>
</div>
</div>
<div class="col-md-9 card m-3 p-1 py-5">
<div class="service-box mx-auto text-center">
<div style="color:#f05f40;font-size:90px;">
<i class="fas fa-dollar-sign"></i><br />
<h3 id="184billion" class="mb-3">184 billion</h3>
</div>
<div class="py-2 border-top">
<p id="184billion_desc" class="text-muted">We designed the coin to have a large supply so you
will never worry about the fractions.</p>
</div>
</div>
</div>
<div class="col-md-9 text-center card m-3 p-1 py-5">
<div class="service-box mx-auto">
<div style="color:#f05f40;font-size:90px;"><i class="fas fa-lock"></i></div>
<h3 id="ring_signatures" class="mb-3">Ring Signatures</h3>
<div class="py-2 border-top">
<p id="ring_signatures_desc" class="text-muted">We leverage Ring Signatures to give you true
privacy so you can integrate whatever your need is.</p>
</div>
</div>
</div>
<div class="col-md-9 text-center card m-3 p-1 py-5">
<div class="service-box mx-auto">
<div style="color:#f05f40;font-size:90px;"><i class="fas fa-server"></i></div>
<h3 id="platform" class="mb-3">Platform</h3>
<div class="py-2 border-top">
<p id="platform_desc" class="text-muted">We think a coin by itself means nothing. So an
ecosystem and easy to consume API was planned from the beginning.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="miningstats" style="background-image:url('img/cryptunit/bbs-6.jpg');background-repeat:no-repeat;background-size:cover;background-position:top;">
<div class="container">
<div class="row col-20 justify-content-center">
<div class="text-center text-white text-shadow">
<h2 id="mining_stats" class="font-weight-bold">Basic Node Statistics</h2>
<hr class="my-4">
<p id="mining_stats_intro" class='pb-4'>On this list we will try to explain the basic live statistics
you will see around the BBS Coin network of websites like on the main page, the mining pool, and the
blockchain explorer.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="text-center w-100 card panel-body chart-wrapper">
<div class="row col-20">
<div id="mining_stats_info" class="text-left col-md-14 py-5 pl-4">
A <b>BBS Node</b> is a software designed to hold a copy of the BBS blockchain and facilitate
transactions.<br /><b>Hash Rate</b> is how much calculating power all miners are using to solve
the next block.<br /><b>Height</b> is the number of the last found block. Each block has a batch
containing transactions.<br /><b>Diffulty</b> is calculated depending on the <i>Hash Rate</i> to
make it harder or easier to find a new block.<br /><b>Reward</b> is the amount of BBS that will
be awarded to the mining pool that finds the new block.<br /><b>Emission</b> is the
<b>Supply</b> in percentage from the total possible supply of 184,470,000,000.0
BBS.<br /><b>Supply</b> is the amount of BBS calculated to be currently available from
mining.<br /><b>Transactions</b> is the amount of transactions that are listed on the
blockchain.
</div>
<div class="text-left border-left px-2">
<div class="row p-2"><a id="mining_stats_hashrate" href="#" data-toggle="tooltip" data-placement="top"
data-original-title="Current estimated network hash rate. Calculated by current difficulty."><i
id="mining_stats_hashrate" class="fa fa-tachometer"></i> Hash Rate:</a> <span
id="networkHashrate"></span></div>
<div class="row p-2 border-top"><a id="mining_stats_height" href="#" data-toggle="tooltip" data-placement="top"
data-original-title="Blockchain height, total amount of blocks starting from zero."><i
id="mining_stats_height" class="fa fa-bars"></i> Height:</a> <span
id="networkHeight"></span></div>
<div class="row p-2 border-top"><a href="#" id="mining_stats_difficulty" data-toggle="tooltip" data-placement="top"
data-original-title="Difficulty for next block. Ratio at which at the current hashing speed blocks will be mined with 2 minutes interval."><i
id="mining_stats_difficulty" class="fa fa-unlock-alt"></i>
Difficulty:</a> <span id="networkDifficulty"></span></div>
<div class="row p-2 border-top"><a id="mining_stats_reward" href="#" data-toggle="tooltip" data-placement="top"
data-original-title="Current Base Reward (for last mined block)."><i
id="mining_stats_reward" class="fa fa-certificate"></i> Reward:</a> <span
id="currentReward"></span></div>
<div class="row p-2 border-top"><a id="mining_stats_emission" href="#" data-toggle="tooltip" data-placement="top"
data-original-title="Percent of already emitted coins related to Initial supply before Tail emission."><i
id="mining_stats_emission" class="fa fa-percent" aria-hidden="true"></i>
Emission:</a> <span id="emissionPercent"></span> %</div>
<div class="row p-2 border-top"><a id="mining_stats_supply" href="#" data-toggle="tooltip" data-placement="top"
data-original-title="Total BBS supply in circulation."><i id="mining_stats_supply"
class="fa fa-money"></i> Supply:</a> <span id="totalCoins"></span></div>
<div class="row p-2 border-top"><a id="mining_stats_transactions" href="#" data-toggle="tooltip" data-placement="top"
data-original-title="The number of transactions in the network (excluding coinbase, i.e. reward for mined blocks)."><i
id="mining_stats_transactions" class="fa fa fa-exchange"></i>
Transactions:</a> <span id="networkTransactions"></span></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="coinstats" style="background-image:url('img/cryptunit/bbs-6.jpg');background-repeat:no-repeat;background-size:cover;background-position:bottom;">
<div class="container">
<div class="row col-20 justify-content-center">
<div class="text-center text-white text-shadow">
<h2 id="transactions_stats" class="font-weight-bold">On-Blockchain Transactions</h2>
<hr class="my-4">
<p id="transactions_stats_intro" class='pb-4 text-left'>This graphic displays the total amount of BBS
transfarred per block in a 24 hour lifespan, these are known to be as on-chain or on-blockchain
transactions. We have excluded the block reward transactions from this graphic, that is why there
are some blocks missing as such blocks had no additional transactions attached to them besides the
block reward. Also transactions inside the <a href='/statistics#Exchanges'>exchanges</a> are not
recorded on the blockchains as they happen within their system or BBS wallet and are known as
off-chain transactions. On-chain transactions do include deposit/withdrawal transfers to/from
exchanges and other transfers or movement of BBS coins.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="text-center col-20 vh-60 card panel-body chart-wrapper text-white">
<div id="chart_div" class="col-20 col-md-19" style="width: 100%; height: 100%;">
<div class="col-20 text-center text-dark">Loading...</div>
</div>
<div id="statistics_graph_note">NOTE: This graph is temporarily static, please re-load the page to load
any changes.</div><br />
</div>
</div>
</div>
</section>
<section id="exchanges" style="background-image:url('img/cryptunit/bbs-6.jpg');background-repeat:no-repeat;background-size:cover;background-position:top;">
<div class="container">
<div class="row col-20 justify-content-center">
<div class="text-center text-white text-shadow">
<h2 class="font-weight-bold"><a name="exchanges">
<div id="exchanges">Exchanges</div>
</a></h2>
<hr class="my-4">
<p id="exchanges_intro" class='pb-4'>Below are the official exchanges where you may trade BBScoin(BBS).
Currently the exchange markets for which BBScoin is traded from/to are Bitcoin(BTC) and
Litecoin(LTC) . On this list we included the on-chain transactions volume for comparison view.
Normally you will have to make some kind of deposit/transfer to the exchange, either BBScoin you
acquired from someone or mining or some other coin you already have that is supported by the
exchanges and used to acquire BBS by exchanging them for BTC then using the BTC to exchange for BBS.
</p>
<p class='pb-4'>Crex24: [ <a href="https://crex24.com/exchange/BBS-BTC" target="_blank">BBS-BTC</a> ] |
TradeOgre: [ <a href="https://tradeogre.com/exchange/LTC-BBS" target="_blank">LTC-BBS</a> ][ <a
href="https://tradeogre.com/exchange/BTC-BBS" target="_blank">BTC-BBS</a> ]</p>
</div>
</div>
</div>
</section>
<section id="bbsmore" style="background-image:url('img/cryptunit/bbs-6.jpg');background-repeat:no-repeat;background-size:cover;background-position:top;">
<div class="container">
<div class="row col-20 justify-content-center">
<div class="text-center text-white col-20">
<a name="pricetrackinglinks">
<h2 id="what_is_bbs_continue" class="font-weight-bold text-shadow">More about BBS coin</h2>
</a>
<hr class="my-4">
<div id="what_is_bbs_more">
<div class='row p-5 text-left card text-dark'>
<div class='col-20 pb-5 text-center'>Here are some links you may find interesting:</div>
<div class='col-20'><a href='https://bitcointalk.org/index.php?topic=2861067'
target='_blank'>BitcoinTalk.org</a> - BBS Coin Announcement.</div>
<div class='col-20'><a href='https://www.bbscoin.click/roadmap/#roadmap'
target='_blank'>RoadMap</a> - Features BBS Coin has added, in progress and will add.
</div>
<div class='col-20'><a href='https://bbscoin.click/docs/en/Whitepaper_v1.0.0.pdf'
target='_blank'>WhitePaper</a> - Technicality of BBS Coin</div>
<div class='col-20'><a href='https://github.com/bbscoincommunity' target='_blank'>GitHub.com</a>
- Website housing the project code.</div>
<div class='col-20'><a href='https://coinbbs.co' target='_blank'>CoinBBS.co</a> - A community
website where points are exchanged for BBS coins.</div>
</div>
</div>
<div class='row py-5 text-left card text-dark mt-4'>
<div class='pb-5 text-center col-20'> BBS Coin on market tracking websites:</div>
<div class='container'>
<div class='row col-20 px-2 py-3 border-bottom bg-dark-75 text-white text-shadow'>
<div class='col-4'>Link</div>
<div class='col-6 border-left text-center'>Watch/Alert/Like/Comment/Review</div>
<div class='col-2 border-left text-center'>Charts</div>
<div class='col-2 border-left text-center'>Markets</div>
<div class='col-2 border-left text-center'>Socials</div>
<div class='col-2 border-left text-center'>Historical</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://coinmarketcap.com/en/currencies/bbscoin/'
target='_blank'>CoinMarketCap.com</a></div>
<div class='col-6 border-left text-center'>Y / - / - / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://www.coingecko.com/en/coins/bbscoin'
target='_blank'>CoinGecko.com</a></div>
<div class='col-6 border-left text-center'>- / - / Y / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://coinpaprika.com/coin/bbs-bbscoin/'
target='_blank'>CoinPaprika.com</a></div>
<div class='col-6 border-left text-center'>- / - / Y / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://tradecrypto.click/asset/BBS/BBS'
target='_blank'>TradeCrypto.click</a></div>
<div class='col-6 border-left text-center'>- / - / - / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://coindataflow.com/en/currency/bbscoin'
target='_blank'>CoinDataFlow.com</a></div>
<div class='col-6 border-left text-center'>- / - / Y / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://blockfolio.com/coin/BBS'
target='_blank'>Blockfolio.com</a></div>
<div class='col-6 border-left text-center'>- / - / - / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://www.cryptocompare.com/coins/bbs-1/overview'
target='_blank'>CryptoCompare.com</a></div>
<div class='col-6 border-left text-center'>Y / - / - / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-warning"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-warning"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://coin360.com/coin/bbscoin-bbs'
target='_blank'>COIN360.com</a></div>
<div class='col-6 border-left text-center'>Y / - / - / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-warning"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://cointracking.info/coin_charts.php?cur=BBS#coin-analysis'
target='_blank'>CoinTracking.info</a></div>
<div class='col-6 border-left text-center'>- / - / - / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-warning"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-muted"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://coincheckup.com/coins/bbscoin'
target='_blank'>CoinCheckup.com</a></div>
<div class='col-6 border-left text-center'>- / - / Y / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
</div>
<div class='row col-20 px-2 py-3 border-bottom'>
<div class='col-4'><a href='https://www.livecoinwatch.com/price/BBSCoin-BBS'
target='_blank'>LiveCoinWatch.com</a></div>
<div class='col-6 border-left text-center'>Y / - / Y / - / -</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>
<div class='col-2 border-left text-center'><i class="fas fa-check-square text-success"></i>
</div>