This repository was archived by the owner on Feb 12, 2024. It is now read-only.
This repository was archived by the owner on Feb 12, 2024. It is now read-only.
JS-IPFS now incompatible with https://ipfs.io gateway #1380
Closed
Description
Version: 0.29.1
Platform: 64-bit (Windows)
Subsystem: XXX
Type: Bug
Severity: High
Description: A few weeks ago I was able to successfully add files from JS-IPFS and access them from public gateways such as ipfs.io. I am no longer able to have my files found from any of the public gateways. I am connected to approximately 100 peers on average. I have tested this issue on multiple VPS's in different locations.
Steps to reproduce the error: Add a unique file and try to access its hash through the ipfs.io gateway. My node initialization code is listed below.
const IPFS = require('ipfs');
node = new IPFS({
config: {
EXPERIMENTAL: {
pubsub: true
},
repo: 'ipfs-' + Math.random(),
Addresses: {
Swarm: [
'/dns4/ws-star.discovery.libp2p.io/tcp/443/wss/p2p-websocket-star'
]
}
}
});