I am using one of the pinning service with ipfs-http-client.
ipfs = create({
url: 'url of node',
});
I use addAll
on ipfs.addAll
which adds and pins on the node itself.
Since I can’t trust only one pinning service, it would be great to pin it on somewhere else too.
Is there a good way to do this ?
will this work ?
ipfs.pin.remote.service.add("infura", "")
ipfs.addAll
but I am not sure how to pass infura
parameters in service add