diff --git a/src/upload/methods/bundlr.rs b/src/upload/methods/bundlr.rs index 4081c9d8..44a7d27c 100644 --- a/src/upload/methods/bundlr.rs +++ b/src/upload/methods/bundlr.rs @@ -205,8 +205,10 @@ impl BundlrMethod { .ok_or_else(|| anyhow!("Failed context type to get extension"))?; let link = match asset_info.data_type { - DataType::Image | DataType::Animation => format!("https://arweave.net/{id}?ext={ext}"), - DataType::Metadata => format!("https://arweave.net/{id}"), + DataType::Image | DataType::Animation => { + format!("https://gateway.irys.xyz/{id}?ext={ext}") + } + DataType::Metadata => format!("https://gateway.irys.xyz/{id}"), }; Ok((asset_info.asset_id, link))