From c959f7f4823d82673b5f1bd22fb4d9e7ca641e7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 14 Oct 2022 12:41:29 +0200 Subject: [PATCH] use ipfs.status.im gateway instead of Infura one MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Infura deprecated their public gateway and added auth: https://blog.infura.io/post/ipfs-public-api-and-gateway-deprecation Signed-off-by: Jakub SokoĊ‚owski --- config/storage.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/config/storage.js b/config/storage.js index aece64e..fe05255 100644 --- a/config/storage.js +++ b/config/storage.js @@ -40,9 +40,9 @@ module.exports = { { provider: 'ipfs', protocol: 'https', - host: 'ipfs.infura.io', - port: 5001, - getUrl: 'https://ipfs.infura.io/ipfs/', + host: 'ipfs.status.im', + port: 443, + getUrl: 'https://ipfs.status.im/', }, ], }, @@ -62,9 +62,9 @@ module.exports = { { provider: 'ipfs', protocol: 'https', - host: 'ipfs.infura.io', - port: 5001, - getUrl: 'https://ipfs.infura.io/ipfs/', + host: 'ipfs.status.im', + port: 443, + getUrl: 'https://ipfs.status.im/', }, ], }, @@ -84,9 +84,9 @@ module.exports = { { provider: 'ipfs', protocol: 'https', - host: 'ipfs.infura.io', - port: 5001, - getUrl: 'https://ipfs.infura.io/ipfs/', + host: 'ipfs.status.im', + port: 443, + getUrl: 'https://ipfs.status.im/', }, ], },