From acf42f5a8c56f45d371dc446ac51906bb97190ba Mon Sep 17 00:00:00 2001 From: simbav911 <42268591+simbav911@users.noreply.github.com> Date: Mon, 12 Feb 2024 22:33:26 +0000 Subject: [PATCH] Update package.json This commit updates the `blake2b` dependency in the `package.json` file. The previous link was no longer functional, and we found a new repository for the `blake2b` library at https://github.com/BLAKE2/libb2. This update ensures that our project uses the latest version from the new repository. Changes made: - Updated "blake2b" dependency to use the new repository: https://github.com/BLAKE2/libb2 - Kept other dependencies unchanged Please note that this change was necessary due to the original repository's unavailability, and the new repository is considered a reliable source for the `blake2b` library. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6816487e..30af2e82 100644 --- a/package.json +++ b/package.json @@ -56,15 +56,15 @@ "email": "luwei.here@gmail.com" } ], - "dependencies": { - "blake2b": "https://github.com/BitGo/blake2b#6268e6dd678661e0acc4359e9171b97eb1ebf8ac", +"dependencies": { + "blake2b": "git+https://github.com/BLAKE2/libb2.git", "bn.js": "=4.11.8", "bs58": "=4.0.1", "buffer-compare": "=1.1.1", "elliptic": "=6.5.4", "inherits": "=2.0.1", "lodash": "=4.17.21" - }, +}, "devDependencies": { "bitcore-build": "https://github.com/bitpay/bitcore-build.git#d4e8b2b2f1e2c065c3a807dcb6a6250f61d67ab3", "brfs": "^1.2.0",