Skip to content

Commit 3bc1c3b

Browse files
author
Janaka-Steph
committed
start v5
1 parent 346bd52 commit 3bc1c3b

File tree

7 files changed

+2067
-890
lines changed

7 files changed

+2067
-890
lines changed

antora-playbook.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ site:
88
content:
99
sources:
1010
#- url: .
11-
# branches: HEAD
11+
# branches: [v4, v5]
1212
- url: [email protected]:bitcoin-studio/Bitcoin-Programming-with-BitcoinJS.git
13-
branches: master
13+
branches: [v4, v5]
1414
ui:
1515
bundle:
1616
snapshot: true

antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: bitcoinjs-guide
22
title: BitcoinJS Guide
3-
version: v4
4-
display_version: BitcoinJS v4
3+
version: v5
4+
display_version: BitcoinJS v5
55
nav:
66
- modules/ROOT/nav.adoc

modules/ROOT/pages/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Bitcoin Programming with BitcoinJS, Bitcoin Core and LND
22

3-
Welcome to the non-official _Bitcoin Programming with BitcoinJS_ extensive guide! You will learn how to create various types of Bitcoin transactions using the version 4 of https://github.com/bitcoinjs/bitcoinjs-lib[BitcoinJS^] library.
3+
Welcome to the non-official _Bitcoin Programming with BitcoinJS_ extensive guide! You will learn how to create various types of Bitcoin transactions using the version 5 of https://github.com/bitcoinjs/bitcoinjs-lib[BitcoinJS^] library.
44

55
We will use the Bitcoin Core command-line interface in Regtest mode for various common tasks, as well as some complementary libraries like `bx` aka https://github.com/libbitcoin/libbitcoin-explorer[Libbitcoin Explorer^].
66

@@ -30,9 +30,9 @@ Having prior theoretical knowledge of the Bitcoin protocol will surely help, but
3030

3131
Technical requirements
3232

33-
* Node v10 recommended
34-
* BitcoinJS v4
35-
* Bitcoin Core v18
33+
* Node >= v10 recommended
34+
* BitcoinJS v5
35+
* Bitcoin Core >= v18
3636
* Bash or a Bash interpreter like Cygwin or Windows Subsystem for Linux (WSL)
3737
* JQ (json parser)
3838
* Libbitcoin Explorer v3 (optional)

ui/.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10
1+
13

ui/gulp.d/tasks/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ module.exports = (src, dest, preview) => () => {
7676
.pipe(
7777
imagemin([
7878
imagemin.gifsicle(),
79-
imagemin.jpegtran(),
79+
imagemin.mozjpeg(),
8080
imagemin.optipng(),
8181
imagemin.svgo({ plugins: [{ removeViewBox: false }] }),
8282
].reduce((accum, it) => it ? accum.concat(it) : accum, []))

0 commit comments

Comments
 (0)