Skip to content

Commit 52a4059

Browse files
committed
minor adjustments
1 parent f114d39 commit 52a4059

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

website/pages/en/deploying/deploy-using-subgraph-studio.mdx

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ In [Subgraph Studio](https://thegraph.com/studio/), you can do the following:
1414
- Manage, view details, and visualize the status of a specific subgraph
1515
- Create and manage your API keys for specific subgraphs
1616
- Restrict your API keys to specific domains and allow only certain Indexers to query with them
17-
- Create your subgraph through the Studio UI
18-
- Deploy your subgraph using the The Graph CLI
17+
- Create your subgraph
18+
- Deploy your subgraph using The Graph CLI
1919
- Test your subgraph in the playground environment
2020
- Integrate your subgraph in staging using the development query URL
21-
- Publish your subgraph with the Studio UI
21+
- Publish your subgraph to The Graph Network
2222
- Manage your billing
2323

2424
## Install The Graph CLI
@@ -27,21 +27,19 @@ Before deploying, you must install The Graph CLI.
2727

2828
You must have [Node.js](https://nodejs.org/) and a package manager of your choice (`npm`, `yarn` or `pnpm`) installed to use The Graph CLI. Check for the [most recent](https://github.com/graphprotocol/graph-tooling/releases?q=%40graphprotocol%2Fgraph-cli&expanded=true) CLI version.
2929

30-
**Install with yarn:**
30+
### Install with yarn
3131

3232
```bash
3333
yarn global add @graphprotocol/graph-cli
3434
```
3535

36-
**Install with npm:**
36+
### Install with npm
3737

3838
```bash
3939
npm install -g @graphprotocol/graph-cli
4040
```
4141

42-
## Create Your Subgraph
43-
44-
Before deploying your subgraph you need to create an account in [Subgraph Studio](https://thegraph.com/studio/).
42+
## Get Started
4543

4644
1. Open [Subgraph Studio](https://thegraph.com/studio/).
4745
2. Connect your wallet to sign in.
@@ -55,7 +53,7 @@ Before deploying your subgraph you need to create an account in [Subgraph Studio
5553

5654
<VideoEmbed youtube="nGIFuC69bSA" />
5755

58-
> For additional written detail, review the [Quick-Start](/quick-start/).
56+
> For additional written detail, review the [Quick Start](/quick-start/).
5957
6058
### Subgraph Compatibility with The Graph Network
6159

@@ -83,7 +81,7 @@ After running `graph init`, you will be asked to input the contract address, net
8381

8482
## Graph Auth
8583

86-
Before you can deploy your subgraph to Subgraph Studio, you need to login into your account within the CLI. To do this, you will need your deploy key, which you can find under your subgraph details page.
84+
Before you can deploy your subgraph to Subgraph Studio, you need to log into your account within the CLI. To do this, you will need your deploy key, which you can find under your subgraph details page.
8785

8886
Then, use the following command to authenticate from the CLI:
8987

@@ -95,7 +93,7 @@ graph auth --studio <DEPLOY KEY>
9593

9694
Once you are ready, you can deploy your subgraph to Subgraph Studio.
9795

98-
> Deploying a subgraph with the CLI pushes it to the Studio, where you can test it and and update the metadata. This action won't publish your subgraph to the decentralized network.
96+
> Deploying a subgraph with the CLI pushes it to the Studio, where you can test it and update the metadata. This action won't publish your subgraph to the decentralized network.
9997
10098
Use the following CLI command to deploy your subgraph:
10199

@@ -126,7 +124,7 @@ If you want to update your subgraph, you can do the following:
126124
- Once you're happy with it, you can publish your new deployment to [Graph Explorer](https://thegraph.com/explorer).
127125
- This action will create a new version of your subgraph that Curators can start signaling on and Indexers can index.
128126

129-
You can also update your subgraph's metadata without publishing a new version. You can update your subgraph details in Studio (under the profile picture, name, description, etc.) by checking an option called **Update Details** in Graph Explorer. If this is checked, an on-chain transaction will be generated that updates subgraph details in Explorer without having to publish a new version with a new deployment.
127+
You can also update your subgraph's metadata without publishing a new version. You can update your subgraph details in Studio (under the profile picture, name, description, etc.) by checking an option called **Update Details** in [Graph Explorer](https://thegraph.com/explorer). If this is checked, an on-chain transaction will be generated that updates subgraph details in Explorer without having to publish a new version with a new deployment.
130128

131129
> Note: There are costs associated with publishing a new version of a subgraph to the network. In addition to the transaction fees, you must also fund a part of the curation tax on the auto-migrating signal. You cannot publish a new version of your subgraph if Curators have not signaled on it. For more information, please read more [here](/network/curating/).
132130

0 commit comments

Comments
 (0)