This is a sample squid project to demonstrate its structure and conventions. It accumulates Moonsama token transfers over the Moonriver network and serves them via graphql API.
This sample project is worthy of notice, because it showcases the native support for EVM logs of the Subsquid SDK.
For more info consult FAQ.
- node 16.x
- docker
# 1. Install dependencies
npm ci
# 2. Compile typescript files
npm run build
# 3. Start target Postgres database
docker compose up -d
# 4. Apply database migrations from db/migrations
npx sqd db create
npx sqd db migrate
# 5. Now start the processor
node -r dotenv/config lib/processor.js
# 6. The above command will block the terminal
# being busy with fetching the chain data,
# transforming and storing it in the target database.
#
# To start the graphql server open the separate terminal
# and run
npx squid-graphql-server
Start development by defining the schema of the target database via schema.graphql
.
Schema definition consists of regular graphql type declarations annotated with custom directives.
Full description of schema.graphql
dialect is available here.
Mapping developers use TypeORM EntityManager
to interact with target database during data processing. All necessary entity classes are
generated by the squid framework from schema.graphql
. This is done by running npx sqd codegen
command.
All database changes are applied through migration files located at db/migrations
.
sqd(1)
tool provides several commands to drive the process.
It is all TypeORM under the hood.
# Connect to database, analyze its state and generate migration to match the target schema.
# The target schema is derived from entity classes generated earlier.
npx sqd db create-migration
# Create template file for custom database changes
npx sqd db new-migration
# Apply database migrations from `db/migrations`
npx sqd db migrate
# Revert the last performed migration
npx sqd db revert
# DROP DATABASE
npx sqd db drop
# CREATE DATABASE
npx sqd db create
In order to be able to process EVM logs, it is necessary to import the respective ABI definition. In the case of this project, this has been done via the src/abis/ERC721.json
file.
Furthermore, it is necessary to decode logs and this is shown in src/abis/erc721.ts
. The events
dictionary define there maps the event name at the center of this project to the function used to decode it.
Squid tools assume a certain project layout.
- All compiled js files must reside in
lib
and all TypeScript sources insrc
. The layout oflib
must reflectsrc
. - All TypeORM classes must be exported by
src/model/index.ts
(lib/model
module). - Database schema must be defined in
schema.graphql
. - Database migrations must reside in
db/migrations
and must be plain js files. sqd(1)
andsquid-*(1)
executables consult.env
file for a number of environment variables.
It is possible to extend squid-graphql-server(1)
with custom
type-graphql resolvers and to add request validation.
More details will be added later.
This is alpha-quality software. Expect some bugs and incompatible changes in coming weeks.