Skip to main content
V2 gateway requests require an API key. Set SQD_API_KEY in .env before running gateway-based examples, or pass apiKey: process.env.SQD_API_KEY in GatewaySettings.
An end-to-end idiomatic usage of EvmBatchProcessor can be inspected in the gravatar template repository and also learned from more elaborate examples.In order to illustrate the concepts covered in the development guide, here we highlight the key steps, put together a processor configuration and a data handling definition.
Pre-requisites: NodeJS, Git, Docker, Squid CLI, any of the EVM templates.

1. Model the target schema and generate entity classes

Create or edit schema.graphql to define the target entities and relations. Consult the schema reference.Update the entity classes, start a fresh database and regenerate migrations:
Apply the migrations with

2. Generate Typescript ABI modules

Use evm-typegen to generate the facade classes, for example like this:

3. Configuration

See Configuration section for more details.

4. Iterate over the batch items and group events

The following code snippet illustrates a typical data transformation in a batch. The strategy is to
  • Iterate over ctx.blocks and block.logs
  • Decode each log using a suitable facade class
  • Enrich and transform the data
  • Upsert arrays of entities in batches using ctx.save()
The processor.run() method the looks as follows:
In the snippet above, we decode both NewGravatar and UpdatedGravatar with a single helper function that uses the generated events facade class:

5. Run the processor and store the transformed data into the target database

Run the processor with
The script will build the code automatically before running.In a separate terminal window, run
Inspect the GraphQL API at http://localhost:4350/graphql.