This quest is to migrate the CryptoPunks Subgraph to Squid SDK. The resulting squid should match the GraphQL API of the subgraph as close as possible, by migrating schema.graphql
. The judges reserve the right to request improvements afther the initial review of the submission. Reach out to the Discord Channel for any tech questions regarding this quest. Use template
squid as a starter.
Category | Skill Level | Time required (hours) | Max Participants | Reward | Status |
---|---|---|---|---|---|
Squid Deployment | ~20 | 5 | ended |
Ultimately, the solutions are accepted at the discretion of judges following a manual review. This sections is a rough guide that is in no way binding on our side.
Some of the reasons why the solution will not be accepted include:
- squid does not start
- squid fails to sync fully due to internal errors
- batch handler filters are not set up correctly (leads to a late sync failure in RPC-ingesting squids)
- data returned for any query is not consistent with subgraph data
It is desirable that your solution:
- includes a suite of test GraphQL queries that touches every schema entity and, if used, every custom resolver at least once, with corresponding subgraph queries (listing in README is enough)
- has high code quality (readability, simplicity, comments where necessary)
- uses batch processing consistently
- avoids any "sleeping bugs": logic errors that accidentally happen to not break the data
- follows the standard squid startup procedure:
If it does not, describe your startup procedure in the README.
git clone <repo_url> cd <repo_url> npm ci sqd up sqd process & sqd serve
Please test your solutions before submitting. We do allow some corrections, but judges' time is not limitless.
To submit, invite the following github accounts to your private repo : @dariaag, @belopash, @abernatskiy and @dzhelezov.
tSQD rewards will be delivered via the quests page of Subsquid Cloud. Make sure you use the same GitHub handle to make a submission and when linking to that page.
Winners will be listed at the quest repository README. If you do not wish to be listed please tell us that in an issue in your submission repo.
-
Install Node v16.x or newer https://nodejs.org/en/download
-
Install Docker https://docs.docker.com/engine/install/
-
Install git https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
-
Install Squid CLI
npm i -g @subsquid/cli@latest
Full startup procedure for newly developed squids:
- Install dependecies:
npm ci
- Generate model
sqd codegen
- Generate types
sqd typegen
- Build the squid
sqd build
- Open docker and run:
sqd up
- Generate migrations:
sqd migration:generate
- Start processing:
sqd process
- Start a local GraphQL server in a separate terminal:
sqd serve
Types (./src/abi
), models (./src/model
) and migrations ('./db') are typically kept within squid repos after they become stable. Then the startup procedure simplifies to
npm ci
sqd up
sqd process &
sqd serve
- Docker not installed
X db Error × query-gateway Error
Error response from daemon: Get "https://registry-1.docker.jo/v2/": uri ting to 127.0.0.1:8888: dial cp 127.0.0.1:8888: connectex: No connection
- Git not installed
Error: Error: spawn git ENOENT
at ChildProcess._handle.onexit (node: internal/child_process: 284:19)
at onErrorNT (node: internal/child_process:477:16)
at process.processTicksAndRejections (node: internal/process/task_queues:82:21)
- Dependencies not installed. Run
npm ci
sqd typegen
TYPEGEN
Error: spawn squid-evm-typegen ENOENT
Code: ENOENT
- Rate-limiting. Get a private RPC endpoint from any node provider, then change the
rpcUrl
inprocessor.ts
will pause new requests for 20000ms {"rpcUrl":"https://rpc.ankr.com/eth",
"reason" : "HttpError: got 429 from https://rpc.ankr.com/eth"}
If necessary, rate limit your RPC queries.