Skip to content
🎉 Welcome to the new Aptos Docs! Click here to submit feedback!
BuildIndexer

索引器

The Indexer API, Transaction Stream Service, and Custom Processors are currently in beta. Please report any problems you encounter by creating an issue in the aptos-indexer-processors repo.

Aptos 索引器是一个 API,您可以使用它来获取:

  1. 聚合数据(例如:有多少 NFTs 存在?)
  2. 历史数据(例如:此账户提交了哪些交易?)
  3. 从简单的 Aptos 节点 API 很难获取的数据(例如:哪个账户拥有名为“ExampleToken”的代币?)

例如,您可以使用索引器 API 查询任意账户的可替代资产余额,代码如下:

Loading...

索引器会跟踪链上发生的每笔交易,然后通过 GraphQL API 公开这些数据。

使用索引器 API

了解如何使用索引器 API、每个表代表的含义,以及如何向索引器添加自定义数据。

示例查询

为了帮助您快速入门,以下是索引器常用的一些查询示例。

自定义索引器(进阶)

如果托管的索引器 API 不够用,您可以自定义并托管自己的索引器版本。

旧版索引器

在此处查找旧版索引器的相关信息 here.