Deploying a Subgraph

From within your subgraph repo, you can run the following command:

cd <SUBGRAPH_DIRECTORY>

graph deploy <SUBGRAPH_NAME> \
  --version-label <VERSION_NAME> \
  --node https://subgraphs.alchemy.com/api/subgraphs/deploy \
  --deploy-key <DEPLOY_KEY> \
  --ipfs https://ipfs.satsuma.xyz

Note:

  • We highly recommend using Satsuma's IPFS gateway by specifying the --ipfs flag.

  • Autogenerated npm run commands will need to be updated to include these flags or the flags will need to be passed in when running the commands.

CLI Options

<SUBGRAPH_NAME> (Required): Specifies a unique name for a new/existing subgraph.

  • This name should not include the organization name (e.g. use mainnet instead of syndicate/mainnet).

  • Valid names are composed of alphanumeric characters, ., -, and _.

—version-label (Required):

  • Label that will be used as a unique version name for the subgraph.

  • Valid labels are composed of alphanumeric characters, ., -, and _.

—node (Required): Always set to https://subgraphs.alchemy.com/api/subgraphs/deploy.

—deploy-key (Required): API deploy key that you can access from your Dashboard.

—ipfs (Optional): The IPFS node to which the deployment files are uploaded to.

Last updated