Skip to content

Commit

Permalink
Merge pull request #148 from rocketfren/fix/use-irys-gateway
Browse files Browse the repository at this point in the history
fix: should probably use irys gateway instead of arweave
  • Loading branch information
tonyboylehub authored Oct 31, 2024
2 parents 68d49d9 + a5a56ee commit c8033fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/grumpy-spiders-switch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@metaplex-foundation/umi-uploader-irys': patch
---

Update upload to return Irys gateway URLs to Arweave instead of the arweave.net Gateway. This fixes current devnet issues.
2 changes: 1 addition & 1 deletion packages/umi-uploader-irys/src/createIrysUploader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export function createIrysUploader(
throw new AssetUploadFailedError(status);
}

return `https://arweave.net/${data.id}`;
return `https://gateway.irys.xyz/${data.id}`;
});

return Promise.all(promises);
Expand Down

0 comments on commit c8033fe

Please sign in to comment.