Skip to content

Commit aab2305

Browse files
authored
Merge pull request #654 from subquery/projectts-to-manifest-file
fix: correct references from project.ts to Manifest File
2 parents ad7cf9d + 9470ba1 commit aab2305

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/indexer/quickstart/how-it-works.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
The SubQuery CLI creates a working template project as a launch pad for your own custom project. From this template, there are only 3 important files you need to familiarise yourself with.
44
These are:
55

6-
1. [The project.ts file](#the-projectts-file)
6+
1. [The Manifest File](#the-manifest-file)
77
2. [The GraphQL Schema file](#the-graphql-schema-file)
88
3. [The Mapping functions (in src/mappings/ directory)](#the-mapping-functions)
99

10-
## The project.ts file
10+
## The Manifest File
1111

12-
The project.ts file can be seen as an entry point of your project as it defines most of the details on how SubQuery will index and transform the chain data. It indicates where we are indexing data from, and to what on chain data we are subscribing to.
12+
The Manifest File can be seen as an entry point of your project as it defines most of the details on how SubQuery will index and transform the chain data. It indicates where we are indexing data from, and to what on chain data we are subscribing to.
1313

1414
This file imports various type definitions and environment variables along with defining the name, version and description of the project. In the network section, it specifies the chainID, the RPC endpoint, and also the startBlock. It also specifies the ABI contract address.
1515

16-
:::details project.ts snippet
16+
:::details Manifest File snippet
1717
```ts
1818
.
1919
.

0 commit comments

Comments
 (0)