We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ebe51a commit a57cebfCopy full SHA for a57cebf
2 files changed
src/components/tactDeployer/TactDeployer.tsx
@@ -28,7 +28,7 @@ const deployableTraitInitMessage = Cell.fromBoc(
28
)[0];
29
30
async function fetchFromIpfs(hash: string) {
31
- const IPFS_GW = `https://gateway.pinata.cloud`;
+ const IPFS_GW = `https://ton.mypinata.cloud`;
32
return fetch(`${IPFS_GW}/ipfs/${hash}`);
33
}
34
src/lib/useLoadContractProof.ts
@@ -46,7 +46,7 @@ export async function loadProofData(
46
const sourcesData = await ContractVerifier.getSourcesData(ipfsLink, {
47
testnet: isTestnet,
48
ipfsConverter: (ipfsUrl: string) => {
49
- const endpoint = "https://gateway.pinata.cloud/ipfs/";
+ const endpoint = "https://ton.mypinata.cloud/ipfs/";
50
return ipfsUrl.replace("ipfs://", endpoint);
51
},
52
});
0 commit comments