From d25954c6af41e4ae248cf43dab646f625cbeb6f3 Mon Sep 17 00:00:00 2001 From: CrypticaScriptura <7396812+CrypticaScriptura@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:40:35 -0400 Subject: [PATCH] fix: update coin nodes --- lib/blockchain/common.js | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/lib/blockchain/common.js b/lib/blockchain/common.js index e42344b2..52673da1 100644 --- a/lib/blockchain/common.js +++ b/lib/blockchain/common.js @@ -25,20 +25,22 @@ const BINARIES = { BTC: { defaultUrl: 'https://bitcoincore.org/bin/bitcoin-core-0.20.1/bitcoin-0.20.1-x86_64-linux-gnu.tar.gz', defaultDir: 'bitcoin-0.20.1/bin', - url: 'https://bitcoincore.org/bin/bitcoin-core-23.1/bitcoin-23.1-x86_64-linux-gnu.tar.gz', - dir: 'bitcoin-23.1/bin' + url: 'https://bitcoincore.org/bin/bitcoin-core-25.0/bitcoin-25.0-x86_64-linux-gnu.tar.gz', + dir: 'bitcoin-25.0/bin' }, ETH: { - url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.12.0-e501b3b0.tar.gz', - dir: 'geth-linux-amd64-1.12.0-e501b3b0' + url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.13.1-3f40e65c.tar.gz', + dir: 'geth-linux-amd64-1.13.1-3f40e65c' }, ZEC: { - url: 'https://z.cash/downloads/zcash-5.5.1-linux64-debian-bullseye.tar.gz', - dir: 'zcash-5.5.1/bin' + url: 'https://z.cash/downloads/zcash-5.6.1-linux64-debian-bullseye.tar.gz', + dir: 'zcash-5.6.1/bin' }, DASH: { - url: 'https://github.com/dashpay/dash/releases/download/v18.1.0/dashcore-18.1.0-x86_64-linux-gnu.tar.gz', - dir: 'dashcore-18.1.0/bin' + defaultUrl: 'https://github.com/dashpay/dash/releases/download/v18.1.0/dashcore-18.1.0-x86_64-linux-gnu.tar.gz', + defaultDir: 'dashcore-18.1.0/bin', + url: 'https://github.com/dashpay/dash/releases/download/v19.3.0/dashcore-19.3.0-x86_64-linux-gnu.tar.gz', + dir: 'dashcore-19.3.0/bin' }, LTC: { defaultUrl: 'https://download.litecoin.org/litecoin-0.18.1/linux/litecoin-0.18.1-x86_64-linux-gnu.tar.gz', @@ -58,7 +60,7 @@ const BINARIES = { } } -const coinsUpdateDependent = ['BTC', 'LTC'] +const coinsUpdateDependent = ['BTC', 'LTC', 'DASH'] function firewall (ports) { if (!ports || ports.length === 0) throw new Error('No ports supplied')