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
{{ message }}
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: apps/nextra/pages/en/build/cli/running-a-local-network.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,7 +117,7 @@ To debug this, try the below fixes:
117
117
As you can see from the example output in step 4, once the local network is running, you have access to the following services:
118
118
119
119
- [Node API](../../network/nodes/aptos-api-spec.mdx): This is a REST API that runs directly on the node. It enables core write functionality such as transaction submission and a limited set of read functionality, such as reading account resources or Move module information.
120
-
- [Indexer API](../indexer/aptos-hosted.mdx): This is a [GraphQL](https://graphql.org/) API that provides rich read access to indexed blockchain data. If you click on the URL for the Indexer API above, by default [http://127.0.0.1:8090](http://127.0.0.1:8090/), it will open the Hasura Console, a web UI that will help you query the Indexer GraphQL API.
120
+
- [Indexer API](../indexer/indexer-api.mdx): This is a [GraphQL](https://graphql.org/) API that provides rich read access to indexed blockchain data. If you click on the URL for the Indexer API above, by default [http://127.0.0.1:8090](http://127.0.0.1:8090/), it will open the Hasura Console, a web UI that will help you query the Indexer GraphQL API.
121
121
- [Transaction Stream Service](../indexer/txn-stream.mdx): This is a gRPC stream of transactions used by the Indexer API and SDK. This is only relevant to you if you are developing a [Indexer SDK](../indexer/indexer-sdk.mdx) custom processor.
122
122
- [Postgres](https://www.postgresql.org/): This is the database that the Indexer processors write to. The Indexer API reads from this database.
123
123
- [Faucet](../apis/faucet-api.mdx): You can use this to fund accounts on your local network.
Here's an interactive example of our [Indexer](indexer.mdx) and how you can query for the Current Fungible Asset Balances of an account. More usage examples can be found in [example queries](indexer/fungible-asset-balances.mdx).
43
+
Here's an interactive example of our [Indexer](indexer.mdx) and how you can query for the Current Fungible Asset Balances of an account. More usage examples can be found in [example queries](indexer/indexer-api/fungible-asset-balances.mdx).
<Card.Description>Retrieve NFT collections owned by a specific account.</Card.Description>
86
95
</Card>
87
-
<Cardhref="indexer/get-nfts">
96
+
<Cardhref="indexer/indexer-api/get-nfts">
88
97
<Card.Title>Get NFTs</Card.Title>
89
98
<Card.Description>Retrieve individual NFTs owned by a specific account.</Card.Description>
90
99
</Card>
91
-
<Cardhref="indexer/token-metadata">
100
+
<Cardhref="indexer/indexer-api/token-metadata">
92
101
<Card.Title>Get Token Metadata</Card.Title>
93
102
<Card.Description>Get metadata information for a specific token.</Card.Description>
94
103
</Card>
95
-
<Cardhref="indexer/get-delegators">
104
+
<Cardhref="indexer/indexer-api/get-delegators">
96
105
<Card.Title>Count Delegators in Staking Pool</Card.Title>
97
106
<Card.Description>Retrieve the number of active delegators in a staking pool.</Card.Description>
98
107
</Card>
99
108
</Cards>
100
109
101
-
## Customizing the Indexer (Advanced)
110
+
## Indexer SDK
102
111
103
-
If the hosted Indexer API is not enough, you can customize and host your own versions of the Indexer.
112
+
If the hosted Indexer API is not enough or if you want to index your custom contract, you can create a processor with the [Indexer SDK](./indexer/indexer-sdk.mdx).
104
113
105
114
<Cards>
106
-
<Cardhref="indexer/architecture">
107
-
<Card.Title>Architecture</Card.Title>
108
-
<Card.Description>Detailed layout of the Indexer's architecture.</Card.Description>
109
-
</Card>
110
-
<Cardhref="indexer/indexer-sdk">
111
-
<Card.Title>Indexer SDK</Card.Title>
112
-
<Card.Description>Create a custom processor with the Indexer SDK</Card.Description>
115
+
<Cardhref="indexer/indexer-sdk/quickstart">
116
+
<Card.Title>Quickstart Guide</Card.Title>
117
+
<Card.Description>Get started with the Indexer SDK</Card.Description>
Copy file name to clipboardExpand all lines: apps/nextra/pages/en/build/indexer/indexer-api.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Aptos Labs hosts a public version of the Indexer GraphQL API that anyone can use
13
13
14
14
You can explore it by hand by viewing the Hasura Explorer below for the network you are interested in.
15
15
16
-
You can also access the API via the GraphQL endpoints below. For more information on the format of data in each field / table, please see the [table reference page](indexer-reference.mdx).
16
+
You can also access the API via the GraphQL endpoints below. For more information on the format of data in each field / table, please see the [table reference page](./indexer-api/indexer-reference.mdx).
17
17
18
18
## SDK Access (Primary Method)
19
19
@@ -61,5 +61,5 @@ The following rate limit applies for the Aptos Labs hosted indexer API:
61
61
If you need a higher rate limit, consider the following solutions:
62
62
63
63
1. Get an API Key from [API Gateway](https://developers.aptoslabs.com/).
64
-
2. Run the Aptos Indexer API yourself. See the guide to self-hosting [here](self-hosted.mdx).
64
+
2. Run the Aptos Indexer API yourself. See the guide to self-hosting [here](./txn-stream/self-hosted.mdx).
Copy file name to clipboardExpand all lines: apps/nextra/pages/en/build/indexer/indexer-api/architecture.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@ Here is how the Indexer creates that API at a high-level:
29
29
/>
30
30
</center>
31
31
32
-
The Indexer uses the [Transaction Stream Service](./txn-stream.mdx) and custom processors written with the [Indexer SDK](./indexer-sdk.mdx) to update a database with rich tables. Then it exposes an API for Aptos apps to access the consolidated data.
32
+
The Indexer uses the [Transaction Stream Service](../txn-stream.mdx) and custom processors written with the [Indexer SDK](../indexer-sdk.mdx) to update a database with rich tables. Then it exposes an API for Aptos apps to access the consolidated data.
33
33
34
-
For situations where you need to go beyond the Aptos hosted Indexer API data, you will want to create a custom processor with the Indexer SDK (./indexer-sdk.mdx).
34
+
For situations where you need to go beyond the Aptos hosted Indexer API data, you will want to create a custom processor with the [Indexer SDK](../indexer-sdk.mdx).
0 commit comments