Open sineus opened 2 months ago
I have the same issue. I've tried to replace https://arweave.net/<id>
with https://gateway.irys.xyz/<id>
and it seems to work as it's referenced in the PR linked above. Waiting for the PR approval to remove my workaround.
Experiencing the same issue on the devnet, gateway.irys.xyz
urls work, whereas arweave.net
from umi doesn't.
setting the URL to http://turbo.ardrive.io should fix this - Turbo has a tight integration with http://arweave.net & is supported by the ar.io team
const umi = createUmi(connection)
.use(mplCore())
.use(
irysUploader({
url: "https://turbo.ardrive.io",
timeout: 60000,
})
);
After downloading, I have a URI like arweave.net/{:id} but it doesn't work... What can I do? Has Arweave changed the composition of its URLs?
Create umi instance with IrysUploader
Get uploaded file and create generic file to upload with umi uploader adapter
Then, I get URI like https://arweave.net/{:id} but when I access it, arweave tells me the URL doesn't exist...
See this PR