This repository has been archived by the owner on Jul 11, 2022. It is now read-only.
forked from bcoin-org/bcoin-org.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguides.html
627 lines (561 loc) · 26.6 KB
/
guides.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Bcoin Guides | Learning Bitcoin and Building Apps with Bcoin</title>
<!-- Favicons -->
<!-- old
<link rel="shortcut icon" href="assets/images/bcoin-ico.png">-->
<!-- generated from http://www.favicon-generator.org/ -->
<link rel="apple-touch-icon" sizes="57x57" href="assets/images/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/images/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/images/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/images/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/images/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/images/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/images/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/images/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/images/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/images/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon-16x16.png">
<link rel="manifest" href="assets/images/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="assets/images/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,600,700' rel='stylesheet'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Icon Fonts -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link href="assets/css/simple-line-icons.css" rel="stylesheet">
<!-- Plugins -->
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<link href="assets/css/owl.carousel.css" rel="stylesheet">
<link href="assets/css/flexslider.css" rel="stylesheet">
<link href="assets/css/animate.min.css" rel="stylesheet">
<!-- Template core CSS -->
<link href="assets/css/vertical.min.css" rel="stylesheet">
<link href="assets/css/template.css" rel="stylesheet">
<!-- Google Analytics Tracking -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-96446060-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- PRELOADER -->
<div class="page-loader">
<div class="img-loader">Loading...
<!-- Bcoin logo in SVG -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="200px" height="56px" viewBox="0 0 200 56" style="enable-background:new 0 0 200 56;" xml:space="preserve">
<style type="text/css">
.st0{fill:#070E3E;}
</style>
<g>
<path class="st0" d="M32.6,20.9c-1.5-1.5-3.3-2.7-5.2-3.5c-2-0.8-4.1-1.2-6.3-1.2c-2.6,0-5,0.6-7.2,1.7c-2,1-3.7,2.5-4.9,4.4V3.6
L8.4,3H3L2.3,3.6v48.5L3,52.8h5.4L9,52.1v-4.3c0.6,0.9,1.2,1.6,2,2.3c0.9,0.8,1.9,1.5,3,2c1.1,0.6,2.2,1,3.4,1.2
c1.2,0.3,2.4,0.4,3.5,0.4c2.2,0,4.4-0.4,6.4-1.2c2-0.8,3.8-2,5.3-3.5c1.5-1.5,2.7-3.5,3.6-5.7c0.9-2.2,1.3-4.8,1.3-7.7v-1.4
c0-2.8-0.4-5.4-1.3-7.7C35.4,24.4,34.1,22.4,32.6,20.9z M30.7,34.3v1.4c0,1.8-0.3,3.5-0.8,4.9c-0.5,1.4-1.3,2.7-2.3,3.7
c-1,1-2.1,1.8-3.4,2.3c-1.3,0.5-2.8,0.8-4.3,0.8c-1.5,0-2.9-0.3-4.2-0.8c-1.3-0.6-2.4-1.4-3.4-2.4c-1-1-1.8-2.3-2.3-3.8
C9.3,38.8,9,37.2,9,35.4v-0.8c0-1.8,0.3-3.4,0.9-4.9c0.6-1.5,1.4-2.7,2.3-3.8c1-1,2.1-1.9,3.4-2.5c1.3-0.6,2.7-0.9,4.2-0.9
c1.5,0,3,0.3,4.3,0.8c1.3,0.6,2.5,1.4,3.5,2.4c1,1,1.7,2.3,2.3,3.7C30.5,30.9,30.7,32.5,30.7,34.3z"/>
<path class="st0" d="M71.8,38.1L71,38.6c-0.2,1.1-0.5,2.2-1,3.3c-0.5,1-1.2,2-2,2.8c-0.8,0.8-1.9,1.5-3.1,2
c-1.2,0.5-2.6,0.7-4.2,0.7c-1.6,0-3.2-0.3-4.5-0.8c-1.4-0.5-2.6-1.3-3.7-2.3c-1-1-1.9-2.2-2.4-3.7c-0.6-1.5-0.9-3.1-0.9-5v-0.8
c0-1.8,0.3-3.4,0.9-4.9c0.6-1.5,1.4-2.8,2.5-3.8c1-1.1,2.3-1.9,3.6-2.5c1.4-0.6,2.9-0.9,4.4-0.9c1.6,0,3.1,0.2,4.3,0.7
c1.2,0.5,2.2,1.1,3.1,1.9c0.8,0.8,1.5,1.7,2,2.8c0.5,1.1,0.8,2.2,0.9,3.3l0.8,0.6l5.4-1.2l0.5-0.7c-0.3-2-1-3.8-1.9-5.5
c-0.9-1.7-2.2-3.2-3.6-4.4c-1.5-1.2-3.2-2.2-5.1-2.9c-1.9-0.7-4-1-6.2-1c-2.5,0-4.8,0.4-7.1,1.3c-2.2,0.9-4.2,2.1-5.9,3.7
c-1.7,1.6-3,3.5-4,5.8c-1,2.3-1.5,4.9-1.5,7.7v0.8c0,2.9,0.5,5.5,1.5,7.7c1,2.2,2.3,4.2,4,5.7c1.7,1.6,3.6,2.8,5.9,3.6
c2.2,0.8,4.6,1.2,7.1,1.2c2.3,0,4.5-0.3,6.4-1c1.9-0.7,3.6-1.6,5.1-2.9c1.4-1.2,2.6-2.7,3.6-4.4c0.9-1.7,1.6-3.5,2-5.5l-0.5-0.8
L71.8,38.1z"/>
<path class="st0" d="M113.2,21c-1.6-1.6-3.6-2.8-5.7-3.6c-2.1-0.8-4.4-1.2-6.7-1.2c-2.3,0-4.6,0.4-6.7,1.2c-2.2,0.8-4.1,2-5.7,3.6
c-1.7,1.6-3,3.5-4,5.8c-1,2.3-1.5,4.9-1.5,7.8v0.8c0,2.9,0.5,5.6,1.5,7.8c1,2.3,2.3,4.2,3.9,5.8c1.6,1.6,3.5,2.8,5.7,3.6
c2.1,0.8,4.4,1.2,6.8,1.2c2.3,0,4.6-0.4,6.8-1.2c2.2-0.8,4.1-2,5.7-3.6c1.6-1.6,2.9-3.5,3.9-5.8c1-2.3,1.5-4.9,1.5-7.8v-0.8
c0-2.9-0.5-5.5-1.5-7.8C116.2,24.5,114.9,22.5,113.2,21z M100.8,47.3c-1.6,0-3-0.3-4.4-0.8c-1.3-0.5-2.5-1.3-3.5-2.4
c-1-1-1.8-2.3-2.4-3.8c-0.6-1.5-0.9-3.1-0.9-5v-0.8c0-1.8,0.3-3.4,0.9-4.9c0.6-1.5,1.4-2.7,2.4-3.8c1-1,2.2-1.9,3.5-2.5
c1.3-0.6,2.8-0.9,4.3-0.9s3,0.3,4.3,0.9c1.3,0.6,2.5,1.4,3.5,2.5c1,1,1.8,2.3,2.4,3.8c0.6,1.5,0.9,3.1,0.9,4.9v0.8
c0,1.8-0.3,3.5-0.9,5c-0.6,1.5-1.4,2.7-2.4,3.8c-1,1-2.2,1.8-3.5,2.4C103.8,47.1,102.3,47.3,100.8,47.3z"/>
<path class="st0" d="M141.8,13c1.5,0,2.8-0.5,3.9-1.6c1.1-1.1,1.6-2.4,1.6-3.9c0-1.5-0.5-2.8-1.6-3.9c-1.1-1.1-2.4-1.6-3.9-1.6
c-1.5,0-2.8,0.5-3.9,1.6c-1.1,1.1-1.6,2.4-1.6,3.9c0,1.5,0.5,2.8,1.6,3.9C139,12.5,140.3,13,141.8,13z"/>
<polygon class="st0" points="145.2,46.5 145.2,17.8 144.6,17.1 128.4,17.1 127.7,17.8 127.7,22.8 128.4,23.4 138.5,23.4
138.5,46.5 127.1,46.5 126.5,47.2 126.5,52.1 127.1,52.8 155.8,52.8 156.5,52.1 156.5,47.2 155.8,46.5 "/>
<path class="st0" d="M194.3,20.1c-2.5-2.6-5.8-3.9-10-3.9c-5.2,0-9,2.1-11.3,6.4v-4.7l-0.6-0.6H167l-0.6,0.6v34.4l0.6,0.6h5.4
l0.6-0.6V34.3c0-3.6,0.9-6.4,2.7-8.6c1.8-2.1,4.1-3.1,7.2-3.1c2.6,0,4.6,0.8,6.1,2.5c1.5,1.7,2.3,4.3,2.3,7.7v19.4l0.6,0.6h5.4
l0.6-0.6V31.6C198,26.5,196.7,22.6,194.3,20.1z"/>
</g>
</svg>
</div>
</div>
<!-- END PRELOADER -->
<!-- HEADER -->
<header class="header js-stick">
<div class="container">
<!-- YOUR LOGO HERE -->
<div class="inner-header">
<a class="inner-brand" href="index.html">
<img class="brand-light" src="assets/images/logo-light.png" width="100" alt="">
<img class="brand-dark" src="assets/images/logo-dark.png" width="100" alt="">
</a>
</div>
<!-- OPEN MOBILE MENU -->
<div class="main-nav-toggle">
<div class="nav-icon-toggle" data-toggle="collapse" data-target="#custom-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</div>
</div>
<!-- WIDGETS MENU -->
<div class="inner-header pull-right hide-me">
<div class="menu-extras clearfix">
<!-- SLACK LINK -->
<div class="menu-item">
<div class="">
<a href="slack-signup.html" target="_blank" id="" data-toggle="tooltip" title="" data-placement="bottom" data-original-title="Join us on Slack!">
<img src="assets/images/slack_icon.svg" width="18" height="18"/>
<span class=""></span>
</a>
</div>
</div>
<!-- STACK EXCHANGE LINK -->
<div class="menu-item">
<div class="">
<a href="https://bitcoin.stackexchange.com/questions/tagged/bcoin" target="_blank" id="" data-toggle="tooltip" title="" data-placement="bottom" data-original-title="Questions! Checkout Stack Exchange.">
<img src="assets/images/stack-exchange-icon.svg" width="18" height="18"/>
<span class=""></span>
</a>
</div>
</div>
<!-- GITHUB STUFF -->
<div class="menu-item">
<div class="">
<a href="https://github.com/bcoin-org/bcoin" target="_blank" id="" data-toggle="tooltip" title="" data-placement="bottom" data-original-title="Visit bcoin on GitHub to see the code!">
<img src="assets/images/github_icon.svg" width="18" height="18"/>
<span class=""></span>
</a>
</div>
</div>
<div class="menu-item">
<div class="ghbuttons">
<a class="github-button" href="https://github.com/bcoin-org/bcoin" data-icon="octicon-star" data-count-href="/bcoin-org/bcoin/stargazers" data-show-count="true" data-count-aria-label="# stargazers on GitHub" aria-label="Star bcoin-org/bcoin on GitHub">Star</a>
<a class="github-button" href="https://github.com/bcoin-org/bcoin/fork" data-icon="octicon-repo-forked" data-count-href="/bcoin-org/bcoin/network" data-show-count="true" data-count-aria-label="# forks on GitHub" aria-label="Fork bcoin-org/bcoin on GitHub">Fork</a>
</div>
</div>
</div>
</div>
<!-- MAIN MENU -->
<nav id="custom-collapse" class="main-nav collapse clearfix">
<ul class="inner-nav pull-right">
<!-- HOME -->
<li><a href="./index.html">Home</a></li>
<!-- END HOME -->
<!-- FEATURES -->
<li><a href="./index.html#features">What is Bcoin</a></li>
<!-- END FEATURES -->
<!-- GUIDES -->
<li><a href="guides.html">Guides</a></li>
<!-- GUIDES -->
<!-- API REFERENCE - newer, how to interact once you're setup -->
<li><a href="./api-docs/index.html">API Docs</a></li>
<!-- END API -->
<!-- FULL DOCS - older, full reference
<li><a href="https://bcoin.io/docs/index.html">Docs</a></li>-->
<!-- END DOCS -->
<!-- DIVIDER
<li><a> </a></li>
<li><a href="#">All Demos</a></li>-->
</ul>
</nav>
</div>
</header>
<!-- END HEADER -->
<!-- WRAPPER -->
<div class="wrapper">
<!-- PAGE TITLE -->
<section class="module-sm bg-white-dark" data-background="assets/images/bg-header.jpg">
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h2 class="montserrat text-uppercase m-b-10"><span class="text-highlight-black" style="line-height: 1.5;"> Guides and Videos </span></h2>
</div>
</div>
</div>
</section>
<!-- END PAGE TITLE -->
<!-- GUIDES/TUTORIALS -->
<section class="module" style="padding-top:70px !important;">
<div class="container">
<div class="row">
<!-- START SIDEBAR -->
<div class="col-sm-3 sidebar">
<!-- CATEGORIES WIDGET -->
<div class="widget guide-list">
<h6 class="montserrat text-uppercase bottom-line">Install</h6>
<ul class="icons-list">
<!-- INSTALL-LIST -->
<li><a href="guides/install-windows.html">Install on Windows (Video)</a></li>
<li><a href="guides/install-mac.html">Install on Mac OS (Video)</a></li>
<li><a href="guides/install-linux.html">Install on Linux (Video)</a></li>
<!-- /INSTALL-LIST -->
</ul>
<br>
<h6 class="montserrat text-uppercase bottom-line">Guides</h6>
<ul class="icons-list">
<!-- GUIDES-LIST -->
<li><a href="guides/working-with-txs.html">Working with transactions</a></li>
<li><a href="guides/wallets.html">Wallets and Accounts and Keys, Oh My!</a></li>
<li><a href="guides/vps-setup.html">Full Node VPS Setup</a></li>
<li><a href="guides/segwit.html">Segwit and Bcoin</a></li>
<li><a href="guides/scripting.html">Intro to Scripting</a></li>
<li><a href="guides/op_return.html">Store Data on the Blockchain</a></li>
<li><a href="guides/multisig-tx.html">Creating Multisignature Transactions</a></li>
<li><a href="guides/generate-address.html">Generate an Address</a></li>
<li><a href="guides/crowdfund-tx.html">Create a Crowdfunding Transaction</a></li>
<li><a href="guides/beginners.html">Beginners Guide to Getting Started</a></li>
<!-- /GUIDES-LIST -->
</ul>
</div>
<!-- END CATEGORIES WIDGET -->
<!-- TEXT WIDGET -->
<div class="widget">
<h6 class="montserrat text-uppercase bottom-line">Looking for Docs?</h6>
<p>Checkout our <a href="../api-docs/index.html">API Docs</a> or the <a href="https://bcoin.io/docs/index.html">Full Documentation</a></p>
</div>
<!-- END TEXT WIDGET -->
<!-- TEXT WIDGET -->
<div class="widget">
<h6 class="montserrat text-uppercase bottom-line">Get Involved</h6>
<p>If you think you've got what it takes to make your own bcoin guides and tutorials, head on over to our <a href="https://github.com/bcoin-org/bcoin-org.github.io">GitHub repo</a> to see how you can make a request or contribute your own and earn bounties! You can also reach out to us on <a href="../slack-signup.html"> Slack.</a></p>
<p>Want to join the team?<a href="https://angel.co/purse/jobs/90956-bitcoin-protocol-engineer-bcoin"> We’re hiring.</a></p>
</div>
<!-- END TEXT WIDGET -->
</div>
<!-- END SIDEBAR -->
<!-- NEW BLOG CONTENT -->
<div class="col-sm-9 blog-content post-thumbnail">
<div class="col-sm-1"></div>
<div class="col-sm-11 guide-section-title montserrat text-uppercase bottom-line2">OS Installs</div>
<!-- OS INSTALLS -->
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-3 guide-block">
<a href="guides/install-linux.html">
<div class="os-install text-center" style="color:#000;">
<i class="fa fa-linux fa-4x"></i>
<h2 class="">Linux Install</h2>
</div>
</a>
</div>
<div class="col-sm-3 guide-block">
<a href="guides/install-mac.html">
<div class="os-install text-center" style="color:#000;">
<i class="fa fa-apple fa-4x"></i>
<h2 class="">Mac Install</h2>
</div>
</a>
</div>
<div class="col-sm-3 guide-block">
<a href="guides/install-windows.html">
<div class="os-install text-center" style="color:#000;">
<i class="fa fa-windows fa-4x"></i>
<h2 class="">Win Install</h2>
</div>
</a>
</div>
</div>
</article>
<!-- END POST IMAGE -->
<!-- START ARCHIVE -->
<div class="col-sm-1"></div><div class="col-sm-11 guide-section-title montserrat text-uppercase bottom-line2">Guides</div>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/working-with-txs.html">Working with transactions</a></h2>
<ul class="post-meta">
<li>By Christopher Jeffrey</li>
</ul>
<p>Working with transactions using bcoin and the MTX and TX objects.</p>
<a href="guides/working-with-txs.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/wallets.html">Wallets and Accounts and Keys, Oh My!</a></h2>
<ul class="post-meta">
<li>By Daniel McNally</li>
</ul>
<p>A guide to creating and working with wallets in bcoin</p>
<a href="guides/wallets.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/vps-setup.html">Full Node VPS Setup</a></h2>
<ul class="post-meta">
<li>By Alex Sherbuck</li>
</ul>
<p>This guide provides installation instructions for a Bcoin full node running on a Digital Ocean of Amazon AWS Virtual Private Server.</p>
<a href="guides/vps-setup.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/segwit.html">Segwit and Bcoin</a></h2>
<ul class="post-meta">
<li>By Nodar Chkuaselidze</li>
</ul>
<p>What is segwit, how to use segwit with bcoin and what are the updates</p>
<a href="guides/segwit.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/scripting.html">Intro to Scripting</a></h2>
<ul class="post-meta">
<li>By Christopher Jeffrey</li>
</ul>
<p>Scripts are array-like objects with some helper functions. Learn the basics here.</p>
<a href="guides/scripting.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/op_return.html">Store Data on the Blockchain</a></h2>
<ul class="post-meta">
<li>By Javed Khan</li>
</ul>
<p>This example creates a transaction with output containing a null data script with our data.</p>
<a href="guides/op_return.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/multisig-tx.html">Creating Multisignature Transactions</a></h2>
<ul class="post-meta">
<li>By Nodar Chkuaselidze</li>
</ul>
<p>Working with and creating multi-signature transactions using built in bcoin utilities and the wallet api.</p>
<a href="guides/multisig-tx.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/generate-address.html">Generate an Address</a></h2>
<ul class="post-meta">
<li>By Javed Khan</li>
</ul>
<p>Follow along with the steps to build a transaction from scratch using built-in bcoin utilities. These steps are based on those outlined in the Bitcoin Wiki.</p>
<a href="guides/generate-address.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/crowdfund-tx.html">Create a Crowdfunding Transaction</a></h2>
<ul class="post-meta">
<li>By Buck Perley</li>
</ul>
<p>Learn how SIGHASH flags work in Bitcoin by building out a custom crowdfunding transaction that lets anyone add their own inputs to a transaction with a fixed output.</p>
<a href="guides/crowdfund-tx.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<article class="post format-image">
<div class="row">
<div class="col-sm-1"></div>
<!-- images not used yet
<div class="col-sm-3">
<div class="post-preview">
<a href="#"><img src="assets/images/guides/get-started.png" alt=""></a>
</div>
</div> -->
<div class="col-sm-10">
<div class="post-content" style="color:#000;">
<h2 class="post-title"><a href="guides/beginners.html">Beginners Guide to Getting Started</a></h2>
<ul class="post-meta">
<li>By Bcoin Team</li>
</ul>
<p>An introduction to bcoin along with the requirements and installation instructions. Learn to setup your first node, setup your API key and use TOR. This is the best place to start.</p>
<a href="guides/beginners.html" class="btn btn-lg btn-link btn-base">Start ›</a>
</div>
</div>
</div>
</article>
<!-- END ARCHIVE -->
</div>
<!-- END BLOG CONTENT -->
</div><!-- .row -->
</div>
</section>
<!-- END NEW BLOGS -->
</div><!-- .row -->
</div>
</section>
<!-- END BLOGS -->
<!-- PARALLAX DOCS CTA -->
<section class="module bg-white-alfa-30 parallax color-white" data-background="assets/images/bg-header.jpg">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="text-center">
<h2 class="montserrat text-uppercase m-b-30">Ready to start building? Read the docs!</h2>
<a href="./api-docs/index.html" target="_blank" class="btn btn-lg btn-purple">Documentation</a>
</div>
</div>
</div><!-- .row -->
</div>
</section>
<!-- END PARALLAX DOCS CTA -->
<!-- FOOTER -->
<footer id="footer" class="footer-minimal">
<div class="container">
<div class="row">
<div class="col-sm-12">
<ul class="social-icons social-icons-circle text-center m-b-35">
<li><a href="https://twitter.com/bcoin"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://github.com/bcoin-org/bcoin"><i class="fa fa-github"></i></a></li>
<li><a href="slack-signup.html" target="_blank"><i class="fa fa-slack"></i></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center m-b-35">
<img class="m-b-35 QR-code" src="assets/images/donation_QR.png"/>
<p class="m-0"><strong>Bcoin Development Donation Address:</strong><br />3Bi9H1hzCHWJoFEjc4xzVzEMywi35dyvsV</p>
</div>
</div>
<div class="row">
<div class="col-sm-12 text-center">
<p class="m-0">Copyright <a href="#">bcoin.io, Purse</a>, 2018, All Rights Reserved.</p>
</div>
</div>
</div>
</footer>
<!-- END FOOTER -->
</div>
<!-- /WRAPPER -->
<!-- JAVASCRIPT FILES -->
<script src="assets/js/jquery-2.2.3.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/plugins.min.js"></script>
<script src="assets/js/stickyfill.min.js"></script>
<script src="assets/js/custom.min.js"></script>
<!-- github button js -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>