Reducing Entities for seasons 8,9 and 10 #6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Schema and Data Model Enhancements:
TokenBalance
entity withAddressTokens
to track owned token IDs as an array. Added new entities forSeason8Condition
,Season9Condition
, andSeason10Condition
to support progressive seasonal qualification logic.Query Enhancements:
season8condition.graphql
,season9condition.graphql
,season10condition.graphql
) and user-specific data (userAllSeasons.graphql
). Removed redundant fields and optimized existing queries likeseason7userCondition.graphql
. [1] [2] [3] [4] [5] [6]Configuration Improvements:
docker-compose.yml
to use a specificgraph-node
version (v0.33.0
), added a health check, and disabled the GraphQL playground for production environments. Adjusted local graph-node endpoints inpackage.json
scripts. [1] [2] [3] [4]Helper Functions for Seasonal Logic:
season-helpers.ts
with functions to calculate seasonal eligibility, check token ownership, and handle progressive qualification logic for Seasons 8–10. Added constants for token IDs and season cutoff timestamps to ensure consistency.Documentation and Testing:
README.md
with setup instructions, features, and deployment steps. Included example queries and a test suite in thetests
directory.These changes collectively enhance the subgraph's functionality and performance, enabling efficient tracking of token ownership and seasonal eligibility.