Skip to content

Commit 2c94b34

Browse files
authored
Update quick-start.mdx
1 parent 6e34ec4 commit 2c94b34

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

website/pages/en/quick-start.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Learn how to easily publish and query a [subgraph](/developing/developer-faqs/#1
1313

1414
### 1. Install the Graph CLI
1515

16-
You must have [Node.js](https://nodejs.org/) and 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.
16+
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.
1717

1818
On your local machine, run one of the following commands:
1919

@@ -29,7 +29,7 @@ Using [yarn](https://yarnpkg.com/):
2929
yarn global add @graphprotocol/graph-cli
3030
```
3131

32-
### 2. Create Your Subgraph
32+
### 2. Create your subgraph
3333

3434
If your contract has events, the `init` command will automatically create a scaffold of a subgraph.
3535

@@ -46,11 +46,11 @@ graph init --product subgraph-studio
4646
Subgraph Studio has a staging environment where you can create, manage, deploy, and publish subgraphs and API Keys.
4747

4848
1. Go to [Subgraph Studio](https://thegraph.com/studio/) and connect your wallet.
49-
2. Click Create a Subgraph". It is recommended to name the subgraph in Title Case: "Subgraph Name Chain Name".
49+
2. Click "Create a Subgraph". It is recommended to name the subgraph in Title Case: "Subgraph Name Chain Name".
5050

5151
For additional information on subgraph creation and the Graph CLI, see [Creating a Subgraph](/developing/creating-a-subgraph).
5252

53-
### 3. Initialize Your Subgraph
53+
### 3. Initialize your subgraph
5454

5555
#### From an existing contract
5656

@@ -81,7 +81,7 @@ See the following screenshot for an example for what to expect when initializing
8181

8282
![Subgraph command](/img/subgraph-init-example.png)
8383

84-
### 4. Write Your Subgraph
84+
### 4. Write your subgraph
8585

8686
The `init` command in the previous step creates a scaffold subgraph that you can use as a starting point to build your subgraph.
8787

@@ -93,7 +93,7 @@ When making changes to the subgraph, you will mainly work with three files:
9393

9494
For a detailed breakdown on how to write your subgraph, check out [Creating a Subgraph](/developing/creating-a-subgraph/).
9595

96-
### 5. Deploy Your Subgraph
96+
### 5. Deploy your subgraph
9797

9898
Remember, deploying is not the same as publishing.
9999

@@ -121,7 +121,7 @@ Remember, deploying is not the same as publishing.
121121
- The CLI will ask for a version label.
122122
- It's strongly recommended to use [semantic versioning](https://semver.org/), e.g. `0.0.1`. That said, you can choose any string for the version such as: `v1,` `version1,` `asdf`, etc.
123123

124-
### 6. Review Your Subgraph
124+
### 6. Review your subgraph
125125

126126
If you’d like to examine your subgraph before publishing it to the network, you can use [Subgraph Studio](https://thegraph.com/studio/) to do the following:
127127

@@ -131,7 +131,7 @@ If you’d like to examine your subgraph before publishing it to the network, yo
131131

132132
![Subgraph logs](/img/subgraph-logs-image.png)
133133

134-
### 7. Publish Your Subgraph to The Graph Network
134+
### 7. Publish your subgraph to The Graph Network
135135

136136
Publishing a subgraph to the decentralized network makes it available for [Curators](/network/curating/) to begin curating it and [Indexers](/network/indexing/) to begin indexing it.
137137

@@ -179,7 +179,7 @@ To save on gas costs, you can curate your subgraph in the same transaction you p
179179

180180
![Subgraph publish](/img/publish-and-signal-tx.png)
181181

182-
### 8. Query Your Subgraph
182+
### 8. Query your subgraph
183183

184184
Now, you can query your subgraph by sending GraphQL queries to it's Query URL, which you can find by clicking the Query button.
185185

0 commit comments

Comments
 (0)