We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be929c commit 05bf406Copy full SHA for 05bf406
Assets/Thirdweb/Core/Scripts/Storage.cs
@@ -28,9 +28,9 @@ public class Storage
28
public Storage(ThirdwebSDK.StorageOptions? storageOptions)
29
{
30
if (storageOptions != null)
31
- this.IPFSGateway = string.IsNullOrEmpty(storageOptions.Value.ipfsGatewayUrl) ? "https://ipfs.thirdwebstorage.com/ipfs/" : storageOptions.Value.ipfsGatewayUrl;
+ this.IPFSGateway = string.IsNullOrEmpty(storageOptions.Value.ipfsGatewayUrl) ? "https://gateway.ipfscdn.io/ipfs/" : storageOptions.Value.ipfsGatewayUrl;
32
else
33
- this.IPFSGateway = "https://ipfs.thirdwebstorage.com/ipfs/";
+ this.IPFSGateway = "https://gateway.ipfscdn.io/ipfs/";
34
}
35
36
public async Task<IPFSUploadResult> UploadText(string text)
0 commit comments