You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/pages/en/network/developing.mdx
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,16 @@
2
2
title: Developing
3
3
---
4
4
5
-
To start coding right away and build on The Graph, go to [Developer Quick Start](/quick-start/).
5
+
To start coding right away, go to [Developer Quick Start](/quick-start/).
6
6
7
7
## Overview
8
8
9
-
As a developer, you need important data to build and power your dapps. Querying and indexing that blockchain data can be challenging, but The Graph provides a solution to this issue.
9
+
As a developer, you need data to build and power your dapp. Querying and indexing blockchain data is challenging, but The Graph provides a solution to this issue.
10
10
11
11
On The Graph, you can:
12
12
13
13
1. Create, deploy, and publish subgraphs to The Graph using Graph CLI and [Subgraph Studio](https://thegraph.com/studio/).
14
-
2. Use GraphQL to query live subgraphs and power dapps.
14
+
2. Use GraphQL to query existing subgraphs.
15
15
16
16
### What is GraphQL?
17
17
@@ -45,7 +45,7 @@ Here is a general overview of a subgraph’s lifecycle:
45
45
46
46
### Build locally
47
47
48
-
Great subgraphs start with a local development environment and unit tests. Developers use [Graph CLI](https://github.com/graphprotocol/graph-tooling/tree/main/packages/cli), a command-line interface tool for building and deploying subgraphs in The Graph. They can also use [Graph TypeScript](/developing/graph-ts/) and [Matchstick](/developing/unit-testing-framework/) to create robust subgraphs that deploy to The Graph Network.
48
+
Great subgraphs start with a local development environment and unit tests. Developers use [Graph CLI](https://github.com/graphprotocol/graph-tooling/tree/main/packages/cli), a command-line interface tool for building and deploying subgraphs on The Graph. They can also use [Graph TypeScript](/developing/graph-ts/) and [Matchstick](/developing/unit-testing-framework/) to create robust subgraphs.
49
49
50
50
### Deploy to Subgraph Studio
51
51
@@ -56,7 +56,7 @@ Once defined, a subgraph can be [deployed to Subgraph Studio](/deploying/deployi
56
56
57
57
### Publish to the Network
58
58
59
-
When you're happy with your subgraph, you can put it into production and [publish it](/publishing/publishing-a-subgraph/) to The Graph Network. This ensures Indexers can index it.
59
+
When you're happy with your subgraph, you can [publish it](/publishing/publishing-a-subgraph/) to The Graph Network.
60
60
61
61
- This is an on-chain action, which registers the subgraph and makes it discoverable by Indexers.
62
62
- Published subgraphs have a corresponding NFT, which defines the ownership of the subgraph. You can [transfer the subgraph's ownership](/managing/transfer-and-deprecate-a-subgraph/) by sending the NFT.
@@ -73,10 +73,9 @@ Published subgraphs are unlikely to be picked up by Indexers without curation si
73
73
74
74
### Querying & Application Development
75
75
76
-
Once a subgraph has been processed by Indexers and is ready to [query](/querying/querying-the-graph/), developers can start using their subgraph in their dapps.
76
+
Subgraphs on The Graph Network receive 100,000 free queries per month, after which point developers can either [pay for queries with GRT or a credit card](/billing/).
77
77
78
-
- When a query is made, The Graph Network selects an Indexer who has processed the subgraph to serve that query. Query fees are paid in GRT.
79
-
- Developers must generate an API key and fund it with GRT to make queries, which can be done in [Subgraph Studio](https://thegraph.com/studio/).
78
+
Learn more about [querying subgraphs](/querying/querying-the-graph/).
0 commit comments