This is a squid template for indexing Ink!-based contracts, supported e.g. by the Astar and Shibuya network. This template indexes a sample ERC-20 Ink!-based smart contract token transfers over the Shibuya network and serves them via graphql API.
For more details, inspect Squid SDK docs, including the dedicated page on Ink! support and the Ink! indexing tutorial.
Dependencies: Node.js v16 or newer, Git, Docker.
# 0. Install @subsquid/cli a.k.a. the sqd command globally
npm i -g @subsquid/cli
# 1. Retrieve the template
sqd init my_squid_name -t frontier-evm
cd my_squid_name
# 2. Install dependencies
npm i
# 3. Start a Postgres database container and detach
sqd up
# 4. Build the project
sqd build
# 5. Start both the squid processor and the GraphQL server
sqd run .
A GraphiQL playground will be available at localhost:4350/graphql.
You can also start squid services one by one:
sqd process
sqd serve
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 sqd codegen
command.
All database changes are applied through migration files located at db/migrations
.
squid-typeorm-migration(1)
tool provides several commands to drive the process.
## drop create the database
sqd down
sqd up
## replace any old schemas with a new one made from the entities
sqd migration:generate
See docs on database migrations for more details.
It is necessary to import the respective ABI definition to decode WASM logs. For this template we used standard ERC20 interface, see abi/erc20.json
.
To generate a type-safe facade class to decode EVM logs, use squid-ink-typegen(1)
:
npx squid-ink-typegen --abi abi/erc20.json --output src/abi/erc20.ts
Interfaces generated for contracts is written in ink! v5 or newer are somewhat different from those made for old contracts:
decodeEvent(data: Bytes): Event
becomes
decodeEvent(data: Bytes, topics: Bytes[]): Event
The topics can be requested in processor configuration:
processor.setFields({
event: {
topics: true,
}
})
See this folder for a complete example.
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 environment variables.