-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.php
515 lines (474 loc) · 22.9 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Open-source business development and financial management platform">
<meta name="keywords" content="decentralized network, blockchain, industrial, business, BitShares">
<title>BitShares.org - Home for the BitShares blockchain</title>
<base href="/">
<!-- Styles -->
<link rel="stylesheet" href="assets/css/core.css">
<link rel="stylesheet" href="assets/css/thesaas.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/blocktivity.css">
<!-- Favicons -->
<link rel="apple-touch-icon" href="assets/img/apple-touch-icon.png">
<link rel="icon" href="assets/img/favicon.ico">
<!-- OG Tags -->
<meta property="og:title" content="BitShares 3.0">
<meta property="og:description" content="Open-source business development and financial management platform">
<meta property="og:image" content="assets/img/og-img.jpg">
<meta property="og:url" content="https://bitshares.org/">
<meta name="twitter:card" content="summary_large_image">
<!-- Header -->
<?php require('assets/php/header.php');?>
<!-- End Header -->
<?php include('assets/php/blocktivity-api.php');?>
</head>
<body>
<div canvas="container">
<!-- Main Header Background Starts -->
<header class="header header-inverse h-fullscreen p-0 overflow-hidden">
<video id="main-video" class="bg-video" poster="assets/images/vid-bg.gif" playsinline autoplay muted loop>
<source src="assets/images/bts-vid.mp4" type="video/mp4">
<source src="assets/images/bts-vid.webm" type="video/webm">
</video>
<div class="container container_bar text-center">
<div class="row h-full">
<div class="col-12 col-lg-8 offset-lg-2 align-self-center pt-150">
<div class="uploading-template">
<img src="assets/images/logo.png" width="256" />
</div>
<h1 class="hidden-sm-down home-title" data-aos="fade-down"><span class="bts-color fw-700">BITSHARES BLOCKHAIN</span></h1>
<h1 class="hidden-md-up home-title" data-aos="fade-down"><span class="bts-color fw-700">BITSHARES BLOCKCHAIN</span></h1>
<h2 class="hidden-sm-down home-sub-title fw-500" data-aos="fade-up"><span class="text-dark">Open-source business development and financial management platform</span></h2>
<h2 class="hidden-md-up home-sub-title fw-500" data-aos="fade-up"><span class="text-dark">Open-source business development and financial management platform</span></h2>
<br>
</div>
<div class="col-12 align-self-end text-center">
<a class="btn btn-round btn-lg btn-primary w-300 shadow-5" href="./create-account">Create Free Account</a>
</div>
<div class="col-12 align-self-end text-center pb-70">
<a class="scroll-down-1 scroll-down-inverse" href="#" data-scrollto="section-features"><span></span></a>
</div>
</div>
</div>
</header>
<!-- Main Header Background Starts -->
<!-- Main container -->
<main class="main-content" id="bordertops">
<section class="section pt-80 pb-35 section-x" id="section-features">
<header class="section-header">
<h2>Decentralized Autonomous Cooperation (DAC)</h2>
<hr>
<p class="lead">BitShares Blockchain implements an industrial-grade technology focused on businesses, organizations or individuals, with an amazing eco-system and free-market economy. Based on open-source MIT-licensed Graphene technology, BitShares was launched in its existing form on 13th October 2015, known prior to that as a community project: 'ProtoShares'. Ever since then, the BitShares blockchain and its dApps have been maintained and developed by workers (through consensus) elected via core-token holders, consisting of more than 30 highly skilled professionals.</p>
</header>
</section>
<div class="container container-x">
<div>
<div class="frame">
<div class="bit-3" data-aos="fade-right"><div class="box">
<div class="cardContainer">
<div class="cards">
<div class="front crd-color1">
<div class="headers"></div>
<div class="second_box">
<div class="arrow-down"></div>
<p class="cardTitles mt-16 lato-font">DPoS Consensus</p>
</div>
<div class="doller">
<div class="doller_iner">
<div><span class="progress_icon blue-bg"><i class="fa fa-handshake-o fa-width"></i></span></div>
</div>
</div>
<div class="vel_ten">
<p>The DPOS algorithm is divided into two parts: electing a group of block producers and scheduling production.</p>
</div>
</div>
<div class="back">
<div class="content">
<p>The election process makes sure that core-token holders are ultimately in control because stakeholders lose the most when the network does not operate smoothly”. <em>Dan Larimer</em></p>
<p>DPoS (Delegated Proof of Stake) specifically replaces environmentally reckless ‘mining’.</p><br />
</div>
</div>
</div>
</div>
</div></div>
<div class="bit-3" data-aos="fade-down"><div class="box">
<div class="cardContainer">
<div class="cards">
<div class="front crd-color5">
<div class="headers"></div>
<div class="second_box">
<div class="arrow-down"></div>
<p class="cardTitle mt-16 lato-font">Permissions</p>
</div>
<div class="doller">
<div class="doller_iner">
<div><span class="progress_icon blue-bg"><i class="fa fa-list-alt fa-width"></i></span></div>
</div>
</div>
<div class="vel_ten">
<p>The BitShares Blockchain designs permissions around accounts and then cryptography for ease of use</p>
</div>
</div>
<div class="back">
<div class="content">
<p>Every account can be controlled by single or weighted combinations of other account/s and/or keys. This creates a hierarchical structure which can be built to reflect real-life permissions – for example a company or organization approval and signing processes in digital form.</p>
</div>
</div>
</div>
</div>
</div></div>
<div class="bit-3" data-aos="fade-left"><div class="box">
<div class="cardContainer">
<div class="cards">
<div class="front crd-color6">
<div class="headers"></div>
<div class="second_box">
<div class="arrow-down"></div>
<h2 class="cardTitle">Transactions</h2>
</div>
<div class="doller">
<div class="doller_iner">
<div><span class="progress_icon blue-bg"><i class="fa fa-random fa-width"></i></span></div>
</div>
</div>
<div class="vel_ten">
<p>Any user interacting with a Blockchain does so with transactions which are authentic and authorized.</p>
</div>
</div>
<div class="back">
<div class="content">
<p>Transactions are constructed then transmitted to the network, containing instructions the user wants to perform. The most simple form is the transfer operation, which contains sender, receiver, amount, and optionally, encrypted memo.</p><br />
</div>
</div>
</div>
</div>
</div></div>
<div class="bit-3" data-aos="fade-right"><div class="box">
<div class="cardContainer">
<div class="cards">
<div class="front crd-color2">
<div class="headers"></div>
<div class="second_box">
<div class="arrow-down"></div>
<p class="cardTitle mt-16 lato-font">Token Factory</p>
</div>
<div class="doller">
<div class="doller_iner">
<div><span class="progress_icon blue-bg"><i class="fa fa-industry fa-width"></i></span></div>
</div>
</div>
<div class="vel_ten">
<p>Create your own cryptocurrency tokens by publically representing and listing a User-Issued Asset on the blockchain</p>
</div>
</div>
<div class="back">
<div class="content">
<p>User-Issued Assets enable entrepreneurs to issue their own tokens. Event tickets, company shares, crowd-funding, loyalty/credits are just a few of the examples. Whitelist to create fully regulatory compliant KYC/AML tokens. Publically describe, list, and provide liquidity for your assets.</p>
<!--<a class="fw-600 fs-12" href="#">Read more <i class="fa fa-chevron-right fs-9 pl-8"></i></a>-->
</div>
</div>
</div>
</div>
</div></div>
<div class="bit-3" data-aos="fade-up"><div class="box">
<div class="cardContainer">
<div class="cards">
<div class="front crd-color3">
<div class="headers"></div>
<div class="second_box">
<div class="arrow-down"></div>
<p class="cardTitle mt-16 lato-font">Extensibility</p>
</div>
<div class="doller">
<div class="doller_iner">
<div><span class="progress_icon blue-bg"><i class="fa fa-arrows-alt fa-width"></i></span></div>
</div>
</div>
<div class="vel_ten">
<p>Operations on the BitShares Blockchain allow for extending its range of functions towards built-in or external dApps.</p>
</div>
</div>
<div class="back">
<div class="content">
<p>The BitShares Blockchain is extensively modularized and implements operations independently of one another. BitShares is considered so stable because core blockchain modifications require vetting by the core developer team, followed and approved by BTS holders before any network-wide protocol upgrade.</p>
</div>
</div>
</div>
</div>
</div></div>
<div class="bit-3" data-aos="fade-left"><div class="box">
<div class="cardContainer">
<div class="cards">
<div class="front crd-color4">
<div class="headers"></div>
<div class="second_box">
<div class="arrow-down"></div>
<p class="cardTitle mt-16 lato-font">Identity</p>
</div>
<div class="doller">
<div class="doller_iner">
<div><span class="progress_icon blue-bg"><i class="fa fa-pencil fa-width"></i></span></div>
</div>
</div>
<div class="vel_ten">
<p>Human-readable account names that must be registered together with public-keys in the blockchain prior to usage</p>
</div>
</div>
<div class="back">
<div class="content">
<p>The BitShares Blockchain acts as a name-to-public-key resolver in a similar way to the traditional Domain Name Service (DNS). Users can easily remember and pass on their account information instead of error-prone addresses.</p><br />
</div>
</div>
</div>
</div>
</div></div>
</div>
<!--cardWrapper Ends-->
</div>
</div>
<section class="section pt-45">
<h3 class="centered mb-60">More Features of the BitShares industrial grade blockchain:</h3>
<div class="row gap-y features-centered">
<div class="col-12 col-md-6 col-xl-4">
<div class="flexbox gap-items-4">
<div>
<i class="fa fa-bolt fs-25 pt-4 text-primary"></i>
</div>
<div>
<h5 class="fw-700">Processing Speed</h5>
<p class="text-dark fw-100">Fastest block confirmations. Transactions get written to the blockchain within 3 seconds, and on average in under 1.5 seconds.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4">
<div class="flexbox gap-items-4">
<div>
<i class="fa fa-money fs-25 pt-4 text-primary"></i>
</div>
<div>
<h5 class="fw-700">Lowest Fees</h5>
<p class="text-dark fw-100">Like other Blockchains, BitShares also has fees yet they are much lower than average, with 80% vesting cashback for lifetime members.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4">
<div class="flexbox gap-items-4">
<div>
<i class="fa fa-calendar fs-25 pt-4 text-primary"></i>
</div>
<div>
<h5 class="fw-700">Recurring and Scheduled Payments</h5>
<p class="text-dark fw-100">Supports recurring payments, subscription payments, allow users to authorize third parties to make withdrawals within certain limits.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4">
<div class="flexbox gap-items-4">
<div>
<i class="fa fa-file-text-o fs-25 pt-4 text-primary"></i>
</div>
<div>
<h5 class="fw-700">Dynamic Account Permissions</h5>
<p class="text-dark fw-100">Enabling management for the corporate environment, control wallets using a weighted combination of other account approvals.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4">
<div class="flexbox gap-items-4">
<div>
<i class="fa fa-wrench fs-25 pt-4 text-primary"></i>
</div>
<div>
<h5 class="fw-700">Self-Sustaining</h5>
<p class="text-dark fw-100">Powered by an eco-system of dApps which self-fund the core token BTS, ensuring the blockchain covers costs to keep going in perpetuity.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-xl-4">
<div class="flexbox gap-items-4">
<div>
<i class="fa fa-lock fs-25 pt-4 text-primary"></i>
</div>
<div>
<h5 class="fw-700">Security</h5>
<p class="text-dark fw-100">Delegated Proof of Stake (DPOS) is virtually impossible to hack, as it would involve taking out many active and backup, global, trusted delegates.</p>
</div>
</div>
</div>
</div>
</section>
<section class="section infograph-bg">
<div class="container">
<!-- ********** Blocktivity Table Begin *********** -->
<div id="tour" aos-init aos-animate" data-aos="fade-down">
<div class="w3-container w3-content w3-padding-64 w3-rest">
<div class="main_div_table w3-white w3-container w3-content w3-center w3-padding-16">
<h5 class="pt-10 pb-15">Blockchain Activity Matrix</h5>
<table class="a table w3-content w3-center">
<tr class="font_size_title">
<td colspan="3" class=""></td>
<td colspan="3" class="border_no_bottom w3-center w3-text-blue-grey">Activity</td>
<td colspan="1" class="border_no_bottom w3-center w3-text-blue-grey">Value</td>
<td colspan="2" class="border_no_bottom w3-center w3-text-blue-grey">Index</td>
</tr>
<tr class="bold font_size_title">
<td class="title_cell">#</td>
<td class="title_cell"><img class="icon" src="design/icon/symbol.png" alt="symbol"></td>
<td class="title_cell">Name</td>
<td class="title_cell pl-8">Activity <div class="tooltip"><span class="exposant">ⓘ</span><span class="tooltiptext">Number of operations on the blockchain during the last 24h (more about it at <a href="https://www.blocktivity.info/">Blocktivity.info</a>).</span></div></td>
<td class="title_cell">Average <span class="exposant">(7d)</span><div class="tooltip"><span class="exposant">ⓘ</span><span class="tooltiptext">Average number of operation on the blockchain during the last 7 days (more about it at <a href="https://www.blocktivity.info/">Blocktivity.info</a>).</div></td>
<td class="title_cell">Record <div class="tooltip"><span class="exposant">ⓘ</span><span class="tooltiptext">Absolute transaction / day record (more about it at <a href="https://www.blocktivity.info/">Blocktivity.info</a>)</span></div></td>
<td class="title_cell pl-8">Market Cap <div class="tooltip"><span class="exposant">ⓘ</span><span class="tooltiptext">In BILLION dollars.</span></div></td>
<td class="title_cell pl-8">AVI <div class="tooltip"><span class="exposant">ⓘ</span><span class="tooltiptext">Activity Valuation Index (AVI) - A ratio of blockchain activity to market cap valuation (more about it at <a href="https://www.blocktivity.info/">Blocktivity.info</a>).</span></div></td>
<td class="title_cell">CUI <div class="tooltip"><span class="exposant">ⓘ</span><span class="tooltiptext">Capacity Utilization Index (CUI) - A ratio of blockchain daily activity to total blockchain capacity(more about it at <a href="https://www.blocktivity.info/">Blocktivity.info</a>).</span></div></td>
</tr>
<tr><td colspan="10" class="cell-pad"></td></tr>
<?php echo $table_text; ?>
<tr><td colspan="10" class="w3-text-blue-grey line_btm cell-pad"></br><a href="https://www.blocktivity.info/">Visit Blocktivity.info for more information and analysis.</a></td></tr>
</table>
</div>
</div>
</div>
</div>
</section>
<section class="section pt-45 pb-125" data-parallax="assets/img/press-bg.jpg">
<div class="container container-z">
<header class="section-header">
<h2>Press & Community News</h2>
<p class="lead mb-40">The latest and best stories about BitShares curated from around the web.</p>
</header>
<div class="row gap-y">
<div class="col-12 col-lg-4" data-aos="fade-right">
<a target="_blank" href="https://steemit.com/bitshares/@sschiessl/the-bitshares-ui-worker-20181221t151939143z-post" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_4"></div>
<br>
<h4 class="card-title mb37">The BitShares UI Worker</h4>
<small class="text-dark">December 21, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-down">
<a target="_blank" href="https://steemit.com/bits/@bitshares.fdn/annemieke-dirkes-presenation-at-decentralized-2018" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_4"></div>
<br>
<h4 class="card-title">Annemieke Dirkes' @ Decentralized 2018</h4>
<small class="text-dark">December 21, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-left">
<a target="_blank" href="https://steemit.com/bitshares/@sc-steemit/voting-on-bitshares-what-you-can-do-and-what-to-think-of" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_4"></div>
<br>
<h4 class="card-title mb37">Voting on Bitshares</h4>
<small class="text-dark">December 22, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-right">
<a target="_blank" href="https://whaleshares.io/bitshares/@cryptick1/shining-light-crypto-survey-1-results-part-2" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_8"></div>
<br>
<h4 class="card-title">Shining Light Crypto Survey 1 P2</h4>
<small class="text-dark">December 22, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-up">
<a target="_blank"href="https://whaleshares.io/cryptocurrency/@cryptick1/shining-light-crypto-survey-1-results-part-1" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_8"></div>
<br>
<h4 class="card-title">Shining Light Crypto Survey 1 P1</h4>
<small class="text-dark">December 11, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-left">
<a target="_blank" href="https://steemit.com/bitshares/@jhtitor/citadel-desktop-0-2-5-released" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_4"></div>
<br>
<h4 class="card-title">CITADEL Desktop - 0.2.5 Released</h4>
<small class="text-dark">December 28, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-right">
<a target="_blank" href="https://www.dexbot.info/2018/12/31/dexbot-maintenance-knowledge-retention/" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_7"></div>
<br>
<h4 class="card-title mb0">DEXBot Maintenance, Knowledge Retention</h4>
<small class="text-dark">December 31, 2018</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-up">
<a target="_blank"href="https://steemit.com/bitshares-app/@btspp/opensource-bitshares-mobile-app-work-report" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_4"></div>
<br>
<h4 class="card-title mb25">Open Source Mobile app for BitShares</h4>
<small class="text-dark">January 9, 2019</small>
</div>
</a>
</div>
<div class="col-12 col-lg-4" data-aos="fade-left">
<a target="_blank" href="https://github.com/bitshares/bsips/issues/131" class="card card-bordered card-hover-shadow text-center">
<div class="press-block">
<br>
<div class="bg-press_9"></div>
<br>
<h4 class="card-title mb25">BitShares URI scheme</h4>
<small class="text-dark">December 12, 2018</small>
</div>
</a>
</div>
</div>
</div>
</section>
<section class="section section-inverse text-center py-50 blue-bg">
<div class="container">
<h5 class="fs-30 text-white fw-300 mb-50">Join the World’s Fastest Industrial Grade Blockchain Platform and Eco-System!</h5>
<p class="hidden-sm-down"><a class="btn btn-round btn-lg btn-primary w-400 shadow-5" href="./create-account">Become Basic Member</a></p>
<p class="hidden-md-up"><a class="btn btn-round btn-lg btn-primary w-300 shadow-5" href="./create-account">Become Basic Member</a></p>
</div>
</section>
</main>
<!-- END Main container -->
<!-- Footer -->
<?php require('assets/php/footer.php');?>
<!-- End Footer -->
</div>
<!-- Responsive Menu -->
<?php require('assets/php/mobilemenu.php');?>
<!-- Responsive Menu -->
<!-- Scripts -->
<script src="assets/js/core.min.js"></script>
<script src="assets/js/script.js"></script>
<script type="text/javascript" src="assets/js/marketcap.js"></script>
<!-- End Scripts -->
<!-- Go to Top Button -->
<div id="stop" class="scrollTop bttt-border bttt-round bttt-positionRight bttt-slideFromBottom">
<i class='fa fa-chevron-up'></i>
</div>
<!-- End Go to Top Button -->
</body>
</html>