diff --git a/.changeset/cyan-rats-jog.md b/.changeset/cyan-rats-jog.md new file mode 100644 index 000000000..e33eb5544 --- /dev/null +++ b/.changeset/cyan-rats-jog.md @@ -0,0 +1,5 @@ +--- +'@graphprotocol/graph-cli': patch +--- + +point to correct IPFS URL endpoint diff --git a/packages/cli/src/command-helpers/ipfs.ts b/packages/cli/src/command-helpers/ipfs.ts index 79658893a..6e3886285 100644 --- a/packages/cli/src/command-helpers/ipfs.ts +++ b/packages/cli/src/command-helpers/ipfs.ts @@ -1,3 +1,3 @@ -const DEFAULT_IPFS_URL = 'https://api.thegraph.com/ipfs/' as const; +const DEFAULT_IPFS_URL = 'https://api.thegraph.com/ipfs/api/v0' as const; export { DEFAULT_IPFS_URL };