From 4d5251c7246784ac1fff4cf25e0d4a2a70b5f755 Mon Sep 17 00:00:00 2001 From: Teddy Cornaut Date: Mon, 31 Aug 2020 15:10:30 +0200 Subject: [PATCH] Ajout bs58 --- client/package-lock.json | 19 +++++++++++++++++-- client/package.json | 1 + 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/client/package-lock.json b/client/package-lock.json index ad051a6..721fda7 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -2839,6 +2839,14 @@ } } }, + "base-x": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.8.tgz", + "integrity": "sha512-Rl/1AWP4J/zRrk54hhlxH4drNxPJXYUaKffODVI53/dAsV4t9fBxyxYKAVPU1XBHxYwOWP9h9H0hM2MVw4YfJA==", + "requires": { + "safe-buffer": "^5.0.1" + } + }, "base64-js": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", @@ -3127,6 +3135,14 @@ "pkg-up": "^2.0.0" } }, + "bs58": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", + "integrity": "sha1-vhYedsNU9veIrkBx9j806MTwpCo=", + "requires": { + "base-x": "^3.0.2" + } + }, "btoa": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", @@ -8631,8 +8647,7 @@ "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, "safe-regex": { "version": "1.1.0", diff --git a/client/package.json b/client/package.json index ad76110..9a35688 100644 --- a/client/package.json +++ b/client/package.json @@ -53,6 +53,7 @@ "dependencies": { "@apollo/client": "^3.0.2", "@types/qs": "^6.9.3", + "bs58": "^4.0.1", "bulma": "^0.9.0", "graphql": "^15.3.0", "react": "^16.12.0",