Skip to content

kodadot/stick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stick

Squid based data used to index, process, and query on top of AssetHub for KodaDot NFT Marketplace.

Hosted Squids

Project structure

  • src/generated - model/server definitions created by codegen. Do not alter the contents of this directory manually.
  • src/server-extension - module with custom type-graphql based resolvers.
  • src/types - data type definitions for chain events and extrinsics created by typegen.
  • src/mappings - mapping module.
  • lib - compiled js files. The structure of this directory must reflect src.
  • .env - environment variables defined here or supplied by a shell.

Prerequisites

  • Node 18.x
  • Docker
  • npm
  • just

Quickly running the sample

# 1. Install dependencies
npm ci

# 2. Build project
just build

# 3. Start target Postgres database container
just upd

# 4. Update database with data objects
just migrate

# 5. Start the processor
just process

# 6. Open a separate terminal and launch the graphql server to query the processed data
just serve

# 7. Visit localhost:4350/graphql to see the result

Dev flow

1. Define database schema

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. A full description of schema.graphql dialect is available here.

2. Generate TypeORM classes

Mapping developers use TypeORM entities to interact with the target database during data processing. The squid framework generates All necessary entity classes from schema.graphql. This is done by running just codegen command.

3. Generate database migration

All database changes are applied through migration files located at db/migrations. squid-typeorm-migration tool provides several commands to drive the process. It is all TypeORM under the hood.

# Connect to the database, analyze its state, and generate a migration to match the target schema.
# Launch Docker instance of the database
just upd

# The target schema is derived from entity classes generated earlier.
# Remember to compile your entity classes beforehand!
just update-db

# Apply database migrations from `db/migrations`
just migrate

# Revert the last performed migration
just revert-db

Available sqd shortcuts:

# Build the project, remove any old migrations, then run `npx squid-typeorm-migration generate`
sqd migration:generate

# Run npx squid-typeorm-migration apply
sqd migration:apply

Testing

Unit test early, unit test often

This indexer contains unit tests for utility/parsing functions we wrote.

Tests are located in the tests/ directory. To run the tests, use:

npm run test

Warning

Currently, it is impossible to unit test the whole indexer workflow as a dry run. If you encounter some problem, please head over to the telegram group HydraDevs

Architecture

The architecture of this project is following:

  • src/processable.ts - definition of Events and Extrinsic to be processed by Squid
  • src/processor.ts - processor definition
  • src/mappings/index - the main function that is called by the processor to process events and extrinsic
  • src/mappings/<pallet> - mapping functions for each event and extrinsic
  • src/mappings/<pallet>/types.ts - types for each event and extrinsic
  • src/mappings/<pallet>/getters/<chain>.ts - transformation functions for each event and extrinsic
  • src/mappings/utils - utility functions used by mappings

Misc

  1. fast generate event handlers
pbpaste | cut -d '=' -f 1 | tr -d ' '  | xargs -I_ echo "processor.addEventHandler(Event._, dummy);"
  1. enable debug logs (in .env)
SQD_DEBUG=squid:log
  1. generate metagetters from getters
pbpaste | grep 'export'  | xargs -I_ echo "_  return proc.  }"
  1. Enable different chain (currently only Kusama and Polkadot are supported)

Note

By default the chain is set to kusama

CHAIN=polkadot # or kusama
  1. enable offers

Offers support is a hack on top of the Atomic Swap to enable Offers set in .env file

OFFER=<ID_OF_THE_COLLECTION>
  1. debugging the processor

As the processor can run for a longer period of time it is useful to turn off the "features" that you do not need, Handlers that need to be always enabled are createCollection and createItem as they are the base for the rest of the processor.

Note

If you do not wish to index uniques pallet you can turn it off by setting UNIQUES_ENABLED=false in .env file

Note on Swaps

  1. Swaps can be overwritten at any time

Therefore if you have a swap, and will create a new one, the old one will be overwritten. This is mentioned in createSwap.ts Line 31.

  1. Swaps are autocancelled by few conditions
  • if you burn the NFT
  • if you transfer the NFT

in any other condition the swap will have to be cancelled manually.

Funding

Project was funded as a common good by

version