Scott Twiname
Scott Twiname
POI should create a table for each network like with metadata, because there is no sync with chains the POI needs to be separate for each network. It is still...
Currently if the start height is greater than the chain height, it will appear as the indexer is broken, but it is probably waiting for the start height. We should...
If we make a release of `@subql/common`, `@subql/node-core` or `@subql/types-common` it would be nice to have a workflow that updated deps and changelogs automatically before creating a PR. If more...
The polkadot start installs about 800MB of dependencies right now. This includes the CLI as a dependency. We should look at reducing this. This file is the output of `du...
Now that we have support for [Datasource EndBlocks](https://github.com/subquery/subql/pull/2064) it should be possible for dynamic datasources to remove themselves and set an end blocks. From within a handler we can inject...
It is best practice to use [graphql cursors](https://relay.dev/graphql/connections.htm) as a way of paginating results (instead of `take`/`skip`). We should update `subql-node` to use cursors instead of other pagination tools, and...
## Problem For multichain projects they may want to reindex a single chain due to a bug or including more data. It doesn't make sense to reindex all the chains....
The IPFS client library has been deprecated and we should switch to Helia as the replacement. This should clean up most of the deprecated warnings. It would be great to...
We need to update the docker compose in starters Currently we have: ```yml command: - -f=/app - --disable-historical=true ``` But we should offer more defaults and comment extra options. It...