Alex Potsides
Alex Potsides
I think maybe just disable it entirely - preloading is supposed to increase the availability of newly added content, which isn't something ipld-explorer is for.
Not AFAIK, the [delegate routers](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs/docs/DELEGATE_ROUTERS.md) are there to make DHT queries on behalf of js-IPFS nodes, but preloading is separate from that.
I think having the old module still in use makes the intended style of use less clear so probably best to avoid it? Maybe you or @Gozala or someone else...
Currently aegir is hard-coded to bundle the index file into `index.min.js` but it's because that code predates the rise of the `exports` map so it assumes a single entry point...
Thanks for opening this. Where did the codec number come from? I can't see a reference to MQTT in the [codec table](https://github.com/multiformats/multicodec/blob/master/table.csv) - it would need to be added there...
That's because it's not in the [codec table](https://github.com/multiformats/multicodec/blob/master/table.csv) - please open a PR to that repo first, once the codec number is agreed upon and merged this one can go...
It's an aesthetic point but `/httppath` is quite hard to read. I wonder if it could be `/http-path` (like `/p2p-circuit` or `/webrtc-direct`) or even `/http+path`, since it doesn't really work...
Is a multiaddr with `/http-path` valid without `/http` also being present? If not the spec should say so. If so, it should say how to infer a `/http` tuple when...
If we were to start storing metadata with a block, part of that could be whether it's pinned (and how - direct, indirect, multiples thereof, etc), which would make the...
> That makes pinning maintenance horrible because every time you unpin something you need to check if the item is pinned by something else, update all the items etc. At...