From dfb280df8e023464502ba9f3b4f3044a5a0efae6 Mon Sep 17 00:00:00 2001 From: Neal Date: Thu, 6 Oct 2022 12:48:19 -0400 Subject: [PATCH 1/2] chore: update monero, dash, geth --- lib/blockchain/common.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/blockchain/common.js b/lib/blockchain/common.js index cd4412c4..4ddd1720 100644 --- a/lib/blockchain/common.js +++ b/lib/blockchain/common.js @@ -29,22 +29,22 @@ const BINARIES = { dir: 'bitcoin-23.0/bin' }, ETH: { - url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.21-67109427.tar.gz', - dir: 'geth-linux-amd64-1.10.21-67109427' + url: 'https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.25-69568c55.tar.gz', + dir: 'geth-linux-amd64-1.10.25-69568c55' }, ZEC: { url: 'https://z.cash/downloads/zcash-5.2.0-linux64-debian-bullseye.tar.gz', dir: 'zcash-5.2.0/bin' }, DASH: { - url: 'https://github.com/dashpay/dash/releases/download/v0.17.0.3/dashcore-0.17.0.3-x86_64-linux-gnu.tar.gz', - dir: 'dashcore-0.17.0/bin' + url: 'https://github.com/dashpay/dash/releases/download/v18.0.1/dashcore-18.0.1-aarch64-linux-gnu.tar.gz', + dir: 'dashcore-18.0.1/bin' }, LTC: { defaultUrl: 'https://download.litecoin.org/litecoin-0.18.1/linux/litecoin-0.18.1-x86_64-linux-gnu.tar.gz', defaultDir: 'litecoin-0.18.1/bin', url: 'https://download.litecoin.org/litecoin-0.21.2.1/linux/litecoin-0.21.2.1-x86_64-linux-gnu.tar.gz', - dir: 'litecoin-0.21.2.1/bin' + dir: 'litecoin-0.21.2.1/bin' }, BCH: { url: 'https://github.com/bitcoin-cash-node/bitcoin-cash-node/releases/download/v24.1.0/bitcoin-cash-node-24.1.0-x86_64-linux-gnu.tar.gz', @@ -52,8 +52,8 @@ const BINARIES = { files: [['bitcoind', 'bitcoincashd'], ['bitcoin-cli', 'bitcoincash-cli']] }, XMR: { - url: 'https://downloads.getmonero.org/cli/monero-linux-x64-v0.18.1.0.tar.bz2', - dir: 'monero-x86_64-linux-gnu-v0.18.1.0', + url: 'https://downloads.getmonero.org/cli/monero-linux-x64-v0.18.1.2.tar.bz2', + dir: 'monero-x86_64-linux-gnu-v0.18.1.2', files: [['monerod', 'monerod'], ['monero-wallet-rpc', 'monero-wallet-rpc']] } } From 90925d05d7c0e7c30a1561c82a3bee40f1f8a215 Mon Sep 17 00:00:00 2001 From: Neal Date: Thu, 6 Oct 2022 14:27:43 -0400 Subject: [PATCH 2/2] fix dash arch --- lib/blockchain/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blockchain/common.js b/lib/blockchain/common.js index 4ddd1720..6fbff3bb 100644 --- a/lib/blockchain/common.js +++ b/lib/blockchain/common.js @@ -37,7 +37,7 @@ const BINARIES = { dir: 'zcash-5.2.0/bin' }, DASH: { - url: 'https://github.com/dashpay/dash/releases/download/v18.0.1/dashcore-18.0.1-aarch64-linux-gnu.tar.gz', + url: 'https://github.com/dashpay/dash/releases/download/v18.0.1/dashcore-18.0.1-x86_64-linux-gnu.tar.gz', dir: 'dashcore-18.0.1/bin' }, LTC: {