There was an error while loading. Please reload this page.
1 parent 4ab5404 commit 41879c2Copy full SHA for 41879c2
1 file changed
src/upload/methods/bundlr.rs
@@ -205,8 +205,10 @@ impl BundlrMethod {
205
.ok_or_else(|| anyhow!("Failed context type to get extension"))?;
206
207
let link = match asset_info.data_type {
208
- DataType::Image | DataType::Animation => format!("https://arweave.net/{id}?ext={ext}"),
209
- DataType::Metadata => format!("https://arweave.net/{id}"),
+ DataType::Image | DataType::Animation => {
+ format!("https://gateway.irys.xyz/{id}?ext={ext}")
210
+ }
211
+ DataType::Metadata => format!("https://gateway.irys.xyz/{id}"),
212
};
213
214
Ok((asset_info.asset_id, link))
0 commit comments