Skip to content

Commit

Permalink
use ipfs.status.im gateway instead of Infura one
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jakubgs committed Oct 14, 2022
1 parent f7688de commit c959f7f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions config/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/',
},
],
},
Expand All @@ -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/',
},
],
},
Expand All @@ -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/',
},
],
},
Expand Down

0 comments on commit c959f7f

Please sign in to comment.