create_aptos_indexer
Generate an Aptos indexer project tailored for specific processor types (transaction or event) to streamline blockchain data processing and application development.
Instructions
Creates a new Aptos indexer project based on the example processor.
Args:
project_name: Name of the indexer project
processor_type: Type of processor (transaction, event)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
processor_type | No | transaction | |
project_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"processor_type": {
"default": "transaction",
"title": "Processor Type",
"type": "string"
},
"project_name": {
"title": "Project Name",
"type": "string"
}
},
"required": [
"project_name"
],
"title": "create_aptos_indexerArguments",
"type": "object"
}